From b2931c0d5b9c82a54d740fe4266a2dfe94d8a7c7 Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Wed, 8 Apr 2026 06:09:04 +0000 Subject: [PATCH 1/8] Add better schema formatting options --- .../Serialization/SchemaFormatter.cs | 2 +- .../src/Fusion.Language/ISyntaxWriter.cs | 5 + .../src/Fusion.Language/StringSyntaxWriter.cs | 31 +- ...TransformerTests.Transform_CompositeKey.md | 46 + ...formerTests.Transform_ExternalDirective.md | 42 + ...nsformerTests.Transform_FullIntegration.md | 82 + ...erTests.Transform_KeyResolvableArgument.md | 42 + ...TransformerTests.Transform_MultipleKeys.md | 49 + ...ransform_NonResolvableAndResolvableKeys.md | 44 + ...sformerTests.Transform_NonResolvableKey.md | 41 + ...formerTests.Transform_ProvidesDirective.md | 54 + ...formerTests.Transform_RequiresDirective.md | 49 + ...TransformerTests.Transform_SimpleEntity.md | 42 + .../SourceSchemaMerger.Argument.Tests.cs | 77 +- ...ceSchemaMerger.AuthorizeDirective.Tests.cs | 74 +- ...chemaMerger.CacheControlDirective.Tests.cs | 193 +- .../SourceSchemaMerger.CostDirective.Tests.cs | 54 +- .../SourceSchemaMerger.Enum.Tests.cs | 48 +- .../SourceSchemaMerger.EnumValue.Tests.cs | 57 +- ...Merger.GlobalObjectIdentification.Tests.cs | 53 +- .../SourceSchemaMerger.InputField.Tests.cs | 54 +- .../SourceSchemaMerger.InputObject.Tests.cs | 26 +- .../SourceSchemaMerger.Interface.Tests.cs | 123 +- ...rceSchemaMerger.ListSizeDirective.Tests.cs | 250 +- ...erger.McpToolAnnotationsDirective.Tests.cs | 374 +- .../SourceSchemaMerger.Object.Tests.cs | 343 +- ...SourceSchemaMerger.OneOfDirective.Tests.cs | 26 +- .../SourceSchemaMerger.OutputField.Tests.cs | 159 +- .../SourceSchemaMerger.Scalar.Tests.cs | 12 +- ...SchemaMerger.SerializeAsDirective.Tests.cs | 16 +- .../SourceSchemaMerger.TagDirective.Tests.cs | 99 +- .../SourceSchemaMerger.Union.Tests.cs | 150 +- .../SourceSchemaPreprocessorTests.cs | 72 +- ...NamedSchemas_AddsFusionDefinitions.graphql | 58 +- ...abled_AppliesInferredKeyDirectives.graphql | 35 +- ...upToEntities_FromTransformedSchema.graphql | 9 + ...Should_ProduceValidCompositeSchema.graphql | 21 + .../Utilities/ISyntaxWriter.cs | 5 + .../Utilities/StringSyntaxWriter.cs | 31 +- .../Utilities/SyntaxSerializer.QuerySyntax.cs | 195 +- .../SyntaxSerializer.SchemaSyntax.cs | 178 +- .../Utilities/SyntaxSerializer.cs | 2 + .../Utilities/SyntaxSerializerOptions.cs | 14 + .../SyntaxWriterTests.cs | 6 +- ...itchenSinkWithIndentation_CanBeParsed.snap | 12 +- ...SinkWithIndentation_OutputIsFormatted.snap | 12 +- ...inkWithoutIndentation_OutputIsOneLine.snap | 12 +- ...fWithArgsWithIndent_OutHasIndentation.snap | 4 +- ...scriptionWithIndent_OutHasIndentation.snap | 4 +- ...fWithArgsWithIndent_OutHasIndentation.snap | 4 +- ...scriptionWithIndent_OutHasIndentation.snap | 4 +- ...veDefinition_WithArgument_ToString.graphql | 2 +- ...irectives_Indented_MatchesSnapshot.graphql | 2 +- ...efinition_Indented_MatchesSnapshot.graphql | 2 +- ...jectValue_Indented_MatchesSnapshot.graphql | 7 +- ...erTests.ParseFacebookKitchenSinkQuery.snap | 12 +- ...rTests.ParseFacebookKitchenSinkSchema.snap | 6 +- ...yParserTests.KitchenSinkQueryQuery.graphql | 12 +- .../SchemaParserTests.OneGraph_Schema.snap | 53221 ++++++---------- ...ParserTests.ParserSimpleInterfaceType.snap | 2 +- ...emaParserTests.ParserSimpleObjectType.snap | 2 +- ...SinkWithIndentation_OutputIsFormatted.snap | 12 +- .../SyntaxRewriterTests.Rename_Field.snap | 6 +- .../Serialization/SchemaFormatter.cs | 2 +- .../FusionGraphPackage.cs | 2 +- 65 files changed, 22705 insertions(+), 33980 deletions(-) create mode 100644 src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_CompositeKey.md create mode 100644 src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_ExternalDirective.md create mode 100644 src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_FullIntegration.md create mode 100644 src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_KeyResolvableArgument.md create mode 100644 src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_MultipleKeys.md create mode 100644 src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_NonResolvableAndResolvableKeys.md create mode 100644 src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_NonResolvableKey.md create mode 100644 src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_ProvidesDirective.md create mode 100644 src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_RequiresDirective.md create mode 100644 src/HotChocolate/Fusion/test/Fusion.Composition.ApolloFederation.Tests/__snapshots__/FederationSchemaTransformerTests.Transform_SimpleEntity.md create mode 100644 src/HotChocolate/Fusion/test/Fusion.Connectors.ApolloFederation.Tests/__snapshots__/SchemaTransformationIntegrationTests.Rewriter_Should_RewriteLookupToEntities_FromTransformedSchema.graphql create mode 100644 src/HotChocolate/Fusion/test/Fusion.Connectors.ApolloFederation.Tests/__snapshots__/SchemaTransformationIntegrationTests.Transform_FederationSubgraph_Should_ProduceValidCompositeSchema.graphql 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.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..5466af45369 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,9 +36,10 @@ Search filter to apply ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream type Query @fusion__type(schema: A) @fusion__type(schema: B) { @@ -47,15 +48,17 @@ type Query @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: ProductFilter! @fusion__inputField(schema: A) @fusion__inputField(schema: B, sourceType: "ProductFilter") + ): [Product] @fusion__field(schema: A) @fusion__field(schema: B) +>>>>>>> Stashed changes } - 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,9 +84,10 @@ type Query { ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream type Query @fusion__type(schema: A) @fusion__type(schema: B) { @@ -93,6 +97,12 @@ type Query @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) +>>>>>>> Stashed changes } """); } @@ -123,9 +133,10 @@ Number of items to fetch ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream type Query @fusion__type(schema: A) @fusion__type(schema: B) { @@ -134,6 +145,12 @@ type Query @fusion__inputField(schema: B)): Int @fusion__field(schema: A) @fusion__field(schema: B) +======= + type Query @fusion__type(schema: A) @fusion__type(schema: B) { + field( + limit: Int! = 10 @fusion__inputField(schema: A, sourceType: "Int") @fusion__inputField(schema: B) + ): Int @fusion__field(schema: A) @fusion__field(schema: B) +>>>>>>> Stashed changes } """); } @@ -162,6 +179,7 @@ type ProductDimension { """ ], """ +<<<<<<< Updated upstream type Product @fusion__type(schema: A) { delivery(zip: String! @@ -172,18 +190,22 @@ type Product @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) +>>>>>>> Stashed changes } - 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,6 +230,7 @@ type Product { """ ], """ +<<<<<<< Updated upstream type Product @fusion__type(schema: A) @fusion__type(schema: B) { @@ -217,6 +240,12 @@ type Product @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) +>>>>>>> Stashed changes } """); } @@ -242,6 +271,7 @@ type Product { """ ], """ +<<<<<<< Updated upstream type Product @fusion__type(schema: A) @fusion__type(schema: B) { @@ -251,6 +281,12 @@ type Product @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) +>>>>>>> Stashed changes } """); } @@ -276,6 +312,7 @@ type Product { """ ], """ +<<<<<<< Updated upstream type Product @fusion__type(schema: A) @fusion__type(schema: B) { @@ -285,6 +322,12 @@ type Product @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) +>>>>>>> Stashed changes } """); } 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..8abee3f86db 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,13 +50,22 @@ 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") +<<<<<<< Updated upstream @fusion__type(schema: A) @fusion__type(schema: B) { field(argument: Int @@ -70,36 +79,31 @@ type Query @fusion__cost(schema: B, weight: "1.0") @fusion__field(schema: A) @fusion__field(schema: B) +======= + @fusion__field(schema: A) + @fusion__field(schema: B) +>>>>>>> Stashed changes } - 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 +128,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..7e150587cfb 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,9 +183,10 @@ interface Product @key(fields: "id") @key(fields: "name") { ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream type Query @fusion__type(schema: A) { productById(id: ID! @@ -216,16 +195,21 @@ type Query 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) +>>>>>>> Stashed changes } 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,9 +243,10 @@ type Cat implements Animal { ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream type Query @fusion__type(schema: A) { animalById(id: ID! @@ -289,13 +274,33 @@ type Dog implements Animal @fusion__field(schema: A) id: ID! @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) + } + + 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) +>>>>>>> Stashed changes } 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..8f75d3e8177 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,9 +218,10 @@ type Product @key(fields: "id") @key(fields: "name") { ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream type Query @fusion__type(schema: A) { productById(id: ID! @@ -257,16 +232,22 @@ type Query @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) +>>>>>>> Stashed changes } 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,9 +279,10 @@ type ProductPrice @key(fields: "regionName product { id }") { ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream type Query @fusion__type(schema: A) { productById(id: ID! @@ -320,18 +302,31 @@ type Product price(regionName: String! @fusion__inputField(schema: A)): ProductPrice @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) +>>>>>>> Stashed changes } 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,9 +360,10 @@ type Product @key(fields: "id") { ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream type Query @fusion__type(schema: A) { lookups1: Lookups1! @@ -391,15 +387,31 @@ type Lookups2 productByName(name: String! @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 Lookups2 @fusion__type(schema: A) { + productByName(name: String! @fusion__inputField(schema: A)): Product + @fusion__field(schema: A) +>>>>>>> Stashed changes } 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 +440,31 @@ type Address { ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream 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) +>>>>>>> Stashed changes } - 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,9 +498,10 @@ type Person @key(fields: "sku") { ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream type Query @fusion__type(schema: A) @fusion__type(schema: B) { @@ -496,17 +511,22 @@ type Query 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) +>>>>>>> Stashed changes } 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 +550,30 @@ type Product { ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream 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) +>>>>>>> Stashed changes } 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,9 +619,10 @@ input BrandByInput2 @oneOf { ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream type Query @fusion__type(schema: A) { brand1(by: BrandByInput1! @@ -609,44 +636,45 @@ type Query @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) +>>>>>>> Stashed changes } 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 +698,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 +732,28 @@ type Product @key(fields: "id") { ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream 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(id: ID! @fusion__inputField(schema: A)): Product + @fusion__field(schema: A) +>>>>>>> Stashed changes } 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..86667027717 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,6 +26,7 @@ type Product { """ ], """ +<<<<<<< Updated upstream type Product @fusion__type(schema: A) @fusion__type(schema: B) { @@ -35,6 +36,13 @@ type Product @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) +>>>>>>> Stashed changes } """); } @@ -60,12 +68,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,6 +95,7 @@ type Product { """ ], """ +<<<<<<< Updated upstream type Product @fusion__type(schema: A) @fusion__type(schema: B) { @@ -100,6 +105,12 @@ type Product @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) +>>>>>>> Stashed changes } """); } @@ -126,15 +137,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 +170,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 +198,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 +225,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 +264,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 +305,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 +348,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 +378,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 +408,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..26e0d629f92 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,23 +101,25 @@ 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") +<<<<<<< Updated upstream @fusion__type(schema: A) @fusion__type(schema: B) { field(arg: Int @@ -131,11 +131,23 @@ type FooObject @tag(name: "b") @fusion__field(schema: A) @fusion__field(schema: B) +======= + @fusion__field(schema: A) + @fusion__field(schema: B) +>>>>>>> Stashed changes } 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") +<<<<<<< Updated upstream @fusion__type(schema: A) @fusion__type(schema: B) { field(arg: Int @@ -147,45 +159,45 @@ interface FooInterface @tag(name: "b") @fusion__field(schema: A) @fusion__field(schema: B) +======= + @fusion__field(schema: A) + @fusion__field(schema: B) +>>>>>>> Stashed changes } 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 +224,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 +280,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..c47cb14cadb 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,35 @@ type Query { ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream 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) +>>>>>>> Stashed changes } - 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,9 +260,10 @@ type Cat { ], """ schema { - query: Query + query: Query } +<<<<<<< Updated upstream type Query @fusion__type(schema: A) { animalById(id: ID! @@ -306,13 +285,30 @@ type Dog dogById(id: ID! @fusion__inputField(schema: A)): Dog @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) + } + + 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) +>>>>>>> Stashed changes } 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..5a3e8f07720 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,6 +525,7 @@ type Review implements Node { } type Query { +<<<<<<< Updated upstream node(id: ID!): Node @lookup productById(id: ID!): Product @@ -534,23 +533,24 @@ type Query { 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 +>>>>>>> Stashed changes } - 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 +610,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 +747,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..24782280ba5 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,61 @@ 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(schema: fusion__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(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( + partial: Boolean! = false + provides: fusion__FieldSelectionSet + schema: fusion__Schema! + 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(interface: String!, 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(schema: fusion__Schema!, 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( + assumedSize: Int + requireOneSlicingArgument: Boolean + schema: fusion__Schema! + sizedFields: [String!] + slicingArgumentDefaultValue: Int + 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( + field: fusion__FieldDefinition! + internal: Boolean! = false + key: fusion__FieldSelectionSet! + map: [fusion__FieldSelectionMap!]! + path: fusion__FieldSelectionPath + 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( + field: fusion__FieldDefinition! + map: [fusion__FieldSelectionMap]! + requirements: fusion__FieldSelectionSet! + 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(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(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(member: String!, 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..fde361b0bdb 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,6 +3,7 @@ schema { } type Query { +<<<<<<< Updated upstream fruitById(id: ID!): Fruit @lookup personByAddressId(id: ID! @@ -21,35 +22,41 @@ type Query { 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 +>>>>>>> Stashed changes } 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 +69,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/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..189c0969cdf 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,111 @@ 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 - { - separator = ", "; - } + var flatWidth = MeasureFlatVariableDefinitions(variableDefinitions); - writer.WriteMany(node.VariableDefinitions, VisitVariableDefinition, separator); + if (writer.Column + flatWidth <= _printWidth) + { + writer.Write('('); - if (_indented) + for (var i = 0; i < variableDefinitions.Count; i++) { - writer.WriteLine(); - writer.Unindent(); + if (i > 0) + { + writer.Write(", "); + } + + WriteFlatVariableDefinition(variableDefinitions[i], writer); } + writer.Write(')'); + } + else + { + writer.Write('('); + writer.WriteLine(); + writer.Indent(); + + writer.WriteMany(variableDefinitions, VisitVariableDefinition, Environment.NewLine); + + 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 +164,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 +243,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 +255,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..187dcf74dcd 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,68 @@ 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(", "); + } + + WriteInputValueDefinition(arguments[i], writer); + } + + writer.Write(")"); + } + else + { + writer.Write("("); + writer.Indent(); + + foreach (var argument in arguments) + { + writer.WriteLine(); + writer.WriteIndent(); + WriteInputValueDefinition(argument, writer); + } + + writer.WriteLine(); + writer.Unindent(); + writer.WriteIndent(); + writer.Write(")"); + } } private void VisitInputValueDefinition( @@ -353,12 +400,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 +448,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 +488,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 +517,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 +530,90 @@ 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) + { + 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..5d8e3ff0b3b 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 @@ -11,5 +11,5 @@ interface Foo @a @b { "abc" bar: String @foo "abc" - baz("abc" a: String = "abc"): [Int] @foo @bar + baz(a: String = "abc"): [Int] @foo @bar } 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..ffc8dea1c1e 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 @@ -11,5 +11,5 @@ type Foo @a @b { "abc" bar: String @foo "abc" - baz("abc" a: String = "abc"): [Int] @foo @bar + baz(a: String = "abc"): [Int] @foo @bar } diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/DirectiveDefinitionNodeTests.DirectiveDefinition_WithArgument_ToString.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/DirectiveDefinitionNodeTests.DirectiveDefinition_WithArgument_ToString.graphql index 0c1af1ee452..d28ced30326 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/DirectiveDefinitionNodeTests.DirectiveDefinition_WithArgument_ToString.graphql +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/DirectiveDefinitionNodeTests.DirectiveDefinition_WithArgument_ToString.graphql @@ -1,2 +1,2 @@ "bar" -directive @foo("def" abc: efg) repeatable on FIELD +directive @foo(abc: efg) repeatable on FIELD 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..0042cf49bb8 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 @@ -14,10 +14,8 @@ type Foo implements Bar & Baz { """ This is a description of the `two` field. """ - two(""" - This is a description of the `argument` argument. - """ argument: InputType!): Type - three(argument: InputType other: String): Int + two(argument: InputType!): Type + 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..2f2c2695669 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`. """ @@ -744,9 +744,7 @@ type SalesforceOrgLifecycleNotification { Status Code """ statusCode: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! + customFields(fields: [String!]): JSON! } type SalesforceOrgLifecycleNotificationCreatedSubscriptionPayload { @@ -1731,9 +1729,7 @@ type SalesforceAssetTokenEvent { Actor Token Payload """ actorTokenPayload: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! + customFields(fields: [String!]): JSON! } type SalesforceAssetTokenEventCreatedSubscriptionPayload { @@ -2953,37 +2949,53 @@ input OneGraphSubscriptionGmailAuthArg { } type Subscription { - gmailNewMessage(""" - Optional authentication for making requests to the Gmail API if you want - to use a custom gmail app instead of OneGraph's built-in app. - - 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 """ - 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 """ - 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 """ - 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 """ - 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 """ - 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 """ - 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 """ - 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 """ - 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.") + gmailNewMessage( + gmailAuth: OneGraphSubscriptionGmailAuthArg + 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 + ): GmailSubscriptionRoot! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + trello( + 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 + 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 + ): IntercomSubscriptionRoot! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") + npm( + 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 + 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 + ): GithubSubscriptionRoot! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") } input SignoutServicesData { @@ -3352,83 +3364,55 @@ type GithubPassthroughMutation { """ Make a POST request to the GitHub API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + post( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PUT request to the GitHub API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + put( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PATCH request to the GitHub API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + patch( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a DELETE request to the GitHub API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + delete( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } input GitHubMergePullRequest_oneGraphInput { @@ -8186,7 +8170,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 +8224,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 +8254,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 +8340,9 @@ type GitHubMutation { """ Deletes a pull request review comment. """ - deletePullRequestReviewComment(input: GitHubDeletePullRequestReviewCommentInput!): GitHubDeletePullRequestReviewCommentPayload + deletePullRequestReviewComment( + input: GitHubDeletePullRequestReviewCommentInput! + ): GitHubDeletePullRequestReviewCommentPayload """ Delete a Git Ref. """ @@ -8386,7 +8378,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 +8404,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 +8420,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 +8462,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 +8508,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 +8590,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 +8646,9 @@ type GitHubMutation { """ Updates a pull request review comment. """ - updatePullRequestReviewComment(input: GitHubUpdatePullRequestReviewCommentInput!): GitHubUpdatePullRequestReviewCommentPayload + updatePullRequestReviewComment( + input: GitHubUpdatePullRequestReviewCommentInput! + ): GitHubUpdatePullRequestReviewCommentPayload """ Update a Git Ref. """ @@ -8638,43 +8676,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 +8742,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 +11571,9 @@ type BrexRootMutationType { """ """ - setStatementEntryIntegrationField(input: BrexSetStatementEntryIntegrationFieldInput!): BrexSetStatementEntryIntegrationFieldPayload + setStatementEntryIntegrationField( + input: BrexSetStatementEntryIntegrationFieldInput! + ): BrexSetStatementEntryIntegrationFieldPayload """ """ @@ -11537,7 +11589,9 @@ type BrexRootMutationType { """ """ - finicityConnectMigrateAccounts(input: BrexFinicityConnectMigrateAccountsInput!): BrexFinicityConnectMigrateAccountsPayload + finicityConnectMigrateAccounts( + input: BrexFinicityConnectMigrateAccountsInput! + ): BrexFinicityConnectMigrateAccountsPayload """ """ @@ -11577,7 +11631,9 @@ type BrexRootMutationType { """ """ - setDepositsTransactionPaymentMemo(input: BrexSetDepositsTransactionPaymentMemoInput!): BrexSetDepositsTransactionPaymentMemoPayload + setDepositsTransactionPaymentMemo( + input: BrexSetDepositsTransactionPaymentMemoInput! + ): BrexSetDepositsTransactionPaymentMemoPayload """ """ @@ -11585,11 +11641,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 +11717,9 @@ type BrexRootMutationType { """ """ - generateDepositsStatementDocumentDownloadUrl(input: BrexGenerateDepositsStatementDocumentDownloadUrlInput!): BrexGenerateDepositsStatementDocumentDownloadUrlPayload + generateDepositsStatementDocumentDownloadUrl( + input: BrexGenerateDepositsStatementDocumentDownloadUrlInput! + ): BrexGenerateDepositsStatementDocumentDownloadUrlPayload """ """ @@ -11665,7 +11727,9 @@ type BrexRootMutationType { """ """ - finicityConnectGenerateLiteUrl(input: BrexFinicityConnectGenerateLiteUrlInput!): BrexFinicityConnectGenerateLiteUrlPayload + finicityConnectGenerateLiteUrl( + input: BrexFinicityConnectGenerateLiteUrlInput! + ): BrexFinicityConnectGenerateLiteUrlPayload """ """ @@ -11673,7 +11737,8 @@ type BrexRootMutationType { """ """ - signup(input: BrexSignupInput!): BrexSignupPayload @deprecated(reason: "Use 'softSignup' instead") + signup(input: BrexSignupInput!): BrexSignupPayload + @deprecated(reason: "Use 'softSignup' instead") """ """ @@ -11693,7 +11758,9 @@ type BrexRootMutationType { """ """ - setTransactionIntegrationField(input: BrexSetTransactionIntegrationFieldInput!): BrexSetTransactionIntegrationFieldPayload + setTransactionIntegrationField( + input: BrexSetTransactionIntegrationFieldInput! + ): BrexSetTransactionIntegrationFieldPayload """ """ @@ -11717,11 +11784,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 +11855,9 @@ type BrexRootMutationType { """ """ - saveOnboardingInformationRequest(input: BrexSaveOnboardingInformationRequestInput!): BrexSaveOnboardingInformationRequestPayload + saveOnboardingInformationRequest( + input: BrexSaveOnboardingInformationRequestInput! + ): BrexSaveOnboardingInformationRequestPayload """ """ @@ -11921,7 +11993,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 +12002,9 @@ type BrexRootMutationType { """ """ - createTransactionRefusedSubscription(input: BrexCreateTransactionRefusedSubscriptionInput!): BrexCreateTransactionRefusedSubscriptionPayload + createTransactionRefusedSubscription( + input: BrexCreateTransactionRefusedSubscriptionInput! + ): BrexCreateTransactionRefusedSubscriptionPayload """ """ @@ -11937,7 +12012,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 +12027,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 +12699,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 +12722,28 @@ 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( + 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 +12759,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 { @@ -12839,15 +12956,9 @@ type ZeitPurchaseDomainResponsePayload { Namespace for all mutations for Zeit """ type ZeitMutationNamespace { - purchaseDomain(""" - Purchase the specified domain, it receive the domain name as the key name inside the request body. - """ data: ZeitPurchaseDomainArg!): ZeitPurchaseDomainResponsePayload! - createDeployment(""" - Create a Zeit deployment. - """ input: ZeitCreateDeploymentArg!): ZeitCreateDeploymentResponsePayload! - aliasDeployment(""" - Alias a Zeit deployment with a domain. - """ input: ZeitAliasDeploymentArg!): ZeitAliasDeploymentResponsePayload! + purchaseDomain(data: ZeitPurchaseDomainArg!): ZeitPurchaseDomainResponsePayload! + createDeployment(input: ZeitCreateDeploymentArg!): ZeitCreateDeploymentResponsePayload! + aliasDeployment(input: ZeitAliasDeploymentArg!): ZeitAliasDeploymentResponsePayload! } """ @@ -12985,9 +13096,7 @@ type TwitterPostStatusResponsePayload { Namespace for all mutations for Twitter """ type TwitterMutationNamespace { - postStatus(""" - Post a status update on twitter. You know - tweeting! - """ input: TwitterPostStatusArg!): TwitterPostStatusResponsePayload! + postStatus(input: TwitterPostStatusArg!): TwitterPostStatusResponsePayload! } """ @@ -13001,83 +13110,55 @@ type TwitchTvPassthroughMutation { """ Make a POST request to the Twitch API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + post( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PUT request to the Twitch API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + put( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PATCH request to the Twitch API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + patch( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a DELETE request to the Twitch API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + delete( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } """ @@ -14403,83 +14484,55 @@ type SalesforcePassthroughMutation { """ Make a POST request to the Salesforce API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + post( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PUT request to the Salesforce API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + put( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PATCH request to the Salesforce API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + patch( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a DELETE request to the Salesforce API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + delete( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } input SalesforceDeleteAuraDefinitionBundleInput { @@ -19573,9 +19626,7 @@ type SalesforceRecentlyViewed { Language """ language: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! + customFields(fields: [String!]): JSON! } type SalesforceUpdateRecentlyViewedPayload { @@ -28360,9 +28411,7 @@ type SalesforceFeedLike { InsertedBy ID """ insertedBy: SalesforceUser! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! + customFields(fields: [String!]): JSON! } type SalesforceCreateFeedLikePayload { @@ -29891,9 +29940,7 @@ type SalesforceOutgoingEmailRelation { Relation Address """ relationAddress: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! + customFields(fields: [String!]): JSON! } type SalesforceCreateOutgoingEmailRelationPayload { @@ -34722,9 +34769,7 @@ type SalesforceFeedSignal { InsertedBy ID """ insertedBy: SalesforceUser! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! + customFields(fields: [String!]): JSON! } type SalesforceCreateFeedSignalPayload { @@ -37229,11 +37274,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 +37302,9 @@ type SalesforceMutation { """ Create a new LightningComponentResource """ - createLightningComponentResource(input: SalesforceCreateLightningComponentResourceInput!): SalesforceCreateLightningComponentResourcePayload! + createLightningComponentResource( + input: SalesforceCreateLightningComponentResourceInput! + ): SalesforceCreateLightningComponentResourcePayload! """ Create a new ApexComponent """ @@ -37273,7 +37324,9 @@ type SalesforceMutation { """ Create a new CollaborationGroupMemberRequest """ - createCollaborationGroupMemberRequest(input: SalesforceCreateCollaborationGroupMemberRequestInput!): SalesforceCreateCollaborationGroupMemberRequestPayload! + createCollaborationGroupMemberRequest( + input: SalesforceCreateCollaborationGroupMemberRequestInput! + ): SalesforceCreateCollaborationGroupMemberRequestPayload! """ Create a new MacroShare """ @@ -37301,7 +37354,9 @@ type SalesforceMutation { """ Create a new UserAppMenuCustomizationShare """ - createUserAppMenuCustomizationShare(input: SalesforceCreateUserAppMenuCustomizationShareInput!): SalesforceCreateUserAppMenuCustomizationSharePayload! + createUserAppMenuCustomizationShare( + input: SalesforceCreateUserAppMenuCustomizationShareInput! + ): SalesforceCreateUserAppMenuCustomizationSharePayload! """ Create a new UserAppInfo """ @@ -37309,11 +37364,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 +37388,9 @@ type SalesforceMutation { """ Create a new ApexEmailNotification """ - createApexEmailNotification(input: SalesforceCreateApexEmailNotificationInput!): SalesforceCreateApexEmailNotificationPayload! + createApexEmailNotification( + input: SalesforceCreateApexEmailNotificationInput! + ): SalesforceCreateApexEmailNotificationPayload! """ Create a new CategoryNode """ @@ -37345,7 +37406,9 @@ type SalesforceMutation { """ Create a new CollaborationInvitation """ - createCollaborationInvitation(input: SalesforceCreateCollaborationInvitationInput!): SalesforceCreateCollaborationInvitationPayload! + createCollaborationInvitation( + input: SalesforceCreateCollaborationInvitationInput! + ): SalesforceCreateCollaborationInvitationPayload! """ Create a new AdditionalNumber """ @@ -37365,7 +37428,9 @@ type SalesforceMutation { """ Create a new ListEmailRecipientSource """ - createListEmailRecipientSource(input: SalesforceCreateListEmailRecipientSourceInput!): SalesforceCreateListEmailRecipientSourcePayload! + createListEmailRecipientSource( + input: SalesforceCreateListEmailRecipientSourceInput! + ): SalesforceCreateListEmailRecipientSourcePayload! """ Create a new Opportunity """ @@ -37405,7 +37470,9 @@ type SalesforceMutation { """ Create a new UserProvAccountStaging """ - createUserProvAccountStaging(input: SalesforceCreateUserProvAccountStagingInput!): SalesforceCreateUserProvAccountStagingPayload! + createUserProvAccountStaging( + input: SalesforceCreateUserProvAccountStagingInput! + ): SalesforceCreateUserProvAccountStagingPayload! """ Create a new FlowInterviewShare """ @@ -37413,7 +37480,9 @@ type SalesforceMutation { """ Create a new OrgDeleteRequestShare """ - createOrgDeleteRequestShare(input: SalesforceCreateOrgDeleteRequestShareInput!): SalesforceCreateOrgDeleteRequestSharePayload! + createOrgDeleteRequestShare( + input: SalesforceCreateOrgDeleteRequestShareInput! + ): SalesforceCreateOrgDeleteRequestSharePayload! """ Create a new ApexTestResult """ @@ -37437,7 +37506,9 @@ type SalesforceMutation { """ Create a new EmailServicesFunction """ - createEmailServicesFunction(input: SalesforceCreateEmailServicesFunctionInput!): SalesforceCreateEmailServicesFunctionPayload! + createEmailServicesFunction( + input: SalesforceCreateEmailServicesFunctionInput! + ): SalesforceCreateEmailServicesFunctionPayload! """ Create a new OrgWideEmailAddress """ @@ -37457,7 +37528,9 @@ type SalesforceMutation { """ Create a new DocumentAttachmentMap """ - createDocumentAttachmentMap(input: SalesforceCreateDocumentAttachmentMapInput!): SalesforceCreateDocumentAttachmentMapPayload! + createDocumentAttachmentMap( + input: SalesforceCreateDocumentAttachmentMapInput! + ): SalesforceCreateDocumentAttachmentMapPayload! """ Create a new MacroInstruction """ @@ -37465,7 +37538,9 @@ type SalesforceMutation { """ Create a new ContentWorkspacePermission """ - createContentWorkspacePermission(input: SalesforceCreateContentWorkspacePermissionInput!): SalesforceCreateContentWorkspacePermissionPayload! + createContentWorkspacePermission( + input: SalesforceCreateContentWorkspacePermissionInput! + ): SalesforceCreateContentWorkspacePermissionPayload! """ Create a new BusinessHours """ @@ -37485,7 +37560,9 @@ type SalesforceMutation { """ Create a new UserAppMenuCustomization """ - createUserAppMenuCustomization(input: SalesforceCreateUserAppMenuCustomizationInput!): SalesforceCreateUserAppMenuCustomizationPayload! + createUserAppMenuCustomization( + input: SalesforceCreateUserAppMenuCustomizationInput! + ): SalesforceCreateUserAppMenuCustomizationPayload! """ Create a new Announcement """ @@ -37513,7 +37590,9 @@ type SalesforceMutation { """ Create a new SecurityCustomBaseline """ - createSecurityCustomBaseline(input: SalesforceCreateSecurityCustomBaselineInput!): SalesforceCreateSecurityCustomBaselinePayload! + createSecurityCustomBaseline( + input: SalesforceCreateSecurityCustomBaselineInput! + ): SalesforceCreateSecurityCustomBaselinePayload! """ Create a new AuraDefinition """ @@ -37537,7 +37616,9 @@ type SalesforceMutation { """ Create a new ContentWorkspaceMember """ - createContentWorkspaceMember(input: SalesforceCreateContentWorkspaceMemberInput!): SalesforceCreateContentWorkspaceMemberPayload! + createContentWorkspaceMember( + input: SalesforceCreateContentWorkspaceMemberInput! + ): SalesforceCreateContentWorkspaceMemberPayload! """ Create a new QueueSobject """ @@ -37569,7 +37650,9 @@ type SalesforceMutation { """ Create a new CollaborationGroupMember """ - createCollaborationGroupMember(input: SalesforceCreateCollaborationGroupMemberInput!): SalesforceCreateCollaborationGroupMemberPayload! + createCollaborationGroupMember( + input: SalesforceCreateCollaborationGroupMemberInput! + ): SalesforceCreateCollaborationGroupMemberPayload! """ Create a new AssetRelationship """ @@ -37581,7 +37664,9 @@ type SalesforceMutation { """ Create a new OpportunityContactRole """ - createOpportunityContactRole(input: SalesforceCreateOpportunityContactRoleInput!): SalesforceCreateOpportunityContactRolePayload! + createOpportunityContactRole( + input: SalesforceCreateOpportunityContactRoleInput! + ): SalesforceCreateOpportunityContactRolePayload! """ Create a new CaseSolution """ @@ -37613,11 +37698,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 +37738,9 @@ type SalesforceMutation { """ Create a new ChatterExtensionConfig """ - createChatterExtensionConfig(input: SalesforceCreateChatterExtensionConfigInput!): SalesforceCreateChatterExtensionConfigPayload! + createChatterExtensionConfig( + input: SalesforceCreateChatterExtensionConfigInput! + ): SalesforceCreateChatterExtensionConfigPayload! """ Create a new ListEmailShare """ @@ -37713,7 +37804,9 @@ type SalesforceMutation { """ Create a new OutgoingEmailRelation """ - createOutgoingEmailRelation(input: SalesforceCreateOutgoingEmailRelationInput!): SalesforceCreateOutgoingEmailRelationPayload! + createOutgoingEmailRelation( + input: SalesforceCreateOutgoingEmailRelationInput! + ): SalesforceCreateOutgoingEmailRelationPayload! """ Create a new CaseTeamTemplate """ @@ -37725,7 +37818,9 @@ type SalesforceMutation { """ Create a new CaseTeamTemplateMember """ - createCaseTeamTemplateMember(input: SalesforceCreateCaseTeamTemplateMemberInput!): SalesforceCreateCaseTeamTemplateMemberPayload! + createCaseTeamTemplateMember( + input: SalesforceCreateCaseTeamTemplateMemberInput! + ): SalesforceCreateCaseTeamTemplateMemberPayload! """ Create a new GroupMember """ @@ -37733,7 +37828,9 @@ type SalesforceMutation { """ Create a new CaseTeamTemplateRecord """ - createCaseTeamTemplateRecord(input: SalesforceCreateCaseTeamTemplateRecordInput!): SalesforceCreateCaseTeamTemplateRecordPayload! + createCaseTeamTemplateRecord( + input: SalesforceCreateCaseTeamTemplateRecordInput! + ): SalesforceCreateCaseTeamTemplateRecordPayload! """ Create a new IdeaComment """ @@ -37741,7 +37838,9 @@ type SalesforceMutation { """ Create a new OpportunityCompetitor """ - createOpportunityCompetitor(input: SalesforceCreateOpportunityCompetitorInput!): SalesforceCreateOpportunityCompetitorPayload! + createOpportunityCompetitor( + input: SalesforceCreateOpportunityCompetitorInput! + ): SalesforceCreateOpportunityCompetitorPayload! """ Create a new ContentDocumentLink """ @@ -37785,7 +37884,9 @@ type SalesforceMutation { """ Create a new PlatformCachePartitionType """ - createPlatformCachePartitionType(input: SalesforceCreatePlatformCachePartitionTypeInput!): SalesforceCreatePlatformCachePartitionTypePayload! + createPlatformCachePartitionType( + input: SalesforceCreatePlatformCachePartitionTypeInput! + ): SalesforceCreatePlatformCachePartitionTypePayload! """ Create a new DandBCompany """ @@ -37797,7 +37898,9 @@ type SalesforceMutation { """ Create a new TransactionSecurityPolicy """ - createTransactionSecurityPolicy(input: SalesforceCreateTransactionSecurityPolicyInput!): SalesforceCreateTransactionSecurityPolicyPayload! + createTransactionSecurityPolicy( + input: SalesforceCreateTransactionSecurityPolicyInput! + ): SalesforceCreateTransactionSecurityPolicyPayload! """ Create a new PushTopic """ @@ -37837,7 +37940,9 @@ type SalesforceMutation { """ Create a new UserProvisioningConfig """ - createUserProvisioningConfig(input: SalesforceCreateUserProvisioningConfigInput!): SalesforceCreateUserProvisioningConfigPayload! + createUserProvisioningConfig( + input: SalesforceCreateUserProvisioningConfigInput! + ): SalesforceCreateUserProvisioningConfigPayload! """ Create a new DuplicateRecordItem """ @@ -37845,11 +37950,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 +37970,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 +37998,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 +38026,9 @@ type SalesforceMutation { """ Update LightningComponentResource """ - updateLightningComponentResource(input: SalesforceUpdateLightningComponentResourceInput!): SalesforceUpdateLightningComponentResourcePayload! + updateLightningComponentResource( + input: SalesforceUpdateLightningComponentResourceInput! + ): SalesforceUpdateLightningComponentResourcePayload! """ Update ApexComponent """ @@ -37929,7 +38048,9 @@ type SalesforceMutation { """ Update CollaborationGroupMemberRequest """ - updateCollaborationGroupMemberRequest(input: SalesforceUpdateCollaborationGroupMemberRequestInput!): SalesforceUpdateCollaborationGroupMemberRequestPayload! + updateCollaborationGroupMemberRequest( + input: SalesforceUpdateCollaborationGroupMemberRequestInput! + ): SalesforceUpdateCollaborationGroupMemberRequestPayload! """ Update MacroShare """ @@ -37961,7 +38082,9 @@ type SalesforceMutation { """ Update UserAppMenuCustomizationShare """ - updateUserAppMenuCustomizationShare(input: SalesforceUpdateUserAppMenuCustomizationShareInput!): SalesforceUpdateUserAppMenuCustomizationSharePayload! + updateUserAppMenuCustomizationShare( + input: SalesforceUpdateUserAppMenuCustomizationShareInput! + ): SalesforceUpdateUserAppMenuCustomizationSharePayload! """ Update AppMenuItem """ @@ -37973,11 +38096,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 +38112,9 @@ type SalesforceMutation { """ Update ProcessInstanceWorkitem """ - updateProcessInstanceWorkitem(input: SalesforceUpdateProcessInstanceWorkitemInput!): SalesforceUpdateProcessInstanceWorkitemPayload! + updateProcessInstanceWorkitem( + input: SalesforceUpdateProcessInstanceWorkitemInput! + ): SalesforceUpdateProcessInstanceWorkitemPayload! """ Update UserProvAccount """ @@ -37997,7 +38126,9 @@ type SalesforceMutation { """ Update ApexEmailNotification """ - updateApexEmailNotification(input: SalesforceUpdateApexEmailNotificationInput!): SalesforceUpdateApexEmailNotificationPayload! + updateApexEmailNotification( + input: SalesforceUpdateApexEmailNotificationInput! + ): SalesforceUpdateApexEmailNotificationPayload! """ Update CategoryNode """ @@ -38025,7 +38156,9 @@ type SalesforceMutation { """ Update ListEmailRecipientSource """ - updateListEmailRecipientSource(input: SalesforceUpdateListEmailRecipientSourceInput!): SalesforceUpdateListEmailRecipientSourcePayload! + updateListEmailRecipientSource( + input: SalesforceUpdateListEmailRecipientSourceInput! + ): SalesforceUpdateListEmailRecipientSourcePayload! """ Update Opportunity """ @@ -38065,7 +38198,9 @@ type SalesforceMutation { """ Update UserProvAccountStaging """ - updateUserProvAccountStaging(input: SalesforceUpdateUserProvAccountStagingInput!): SalesforceUpdateUserProvAccountStagingPayload! + updateUserProvAccountStaging( + input: SalesforceUpdateUserProvAccountStagingInput! + ): SalesforceUpdateUserProvAccountStagingPayload! """ Update FlowInterviewShare """ @@ -38073,7 +38208,9 @@ type SalesforceMutation { """ Update OrgDeleteRequestShare """ - updateOrgDeleteRequestShare(input: SalesforceUpdateOrgDeleteRequestShareInput!): SalesforceUpdateOrgDeleteRequestSharePayload! + updateOrgDeleteRequestShare( + input: SalesforceUpdateOrgDeleteRequestShareInput! + ): SalesforceUpdateOrgDeleteRequestSharePayload! """ Update ApexTestResult """ @@ -38093,7 +38230,9 @@ type SalesforceMutation { """ Update EmailServicesFunction """ - updateEmailServicesFunction(input: SalesforceUpdateEmailServicesFunctionInput!): SalesforceUpdateEmailServicesFunctionPayload! + updateEmailServicesFunction( + input: SalesforceUpdateEmailServicesFunctionInput! + ): SalesforceUpdateEmailServicesFunctionPayload! """ Update OrgWideEmailAddress """ @@ -38113,7 +38252,9 @@ type SalesforceMutation { """ Update DocumentAttachmentMap """ - updateDocumentAttachmentMap(input: SalesforceUpdateDocumentAttachmentMapInput!): SalesforceUpdateDocumentAttachmentMapPayload! + updateDocumentAttachmentMap( + input: SalesforceUpdateDocumentAttachmentMapInput! + ): SalesforceUpdateDocumentAttachmentMapPayload! """ Update MacroInstruction """ @@ -38121,7 +38262,9 @@ type SalesforceMutation { """ Update ContentWorkspacePermission """ - updateContentWorkspacePermission(input: SalesforceUpdateContentWorkspacePermissionInput!): SalesforceUpdateContentWorkspacePermissionPayload! + updateContentWorkspacePermission( + input: SalesforceUpdateContentWorkspacePermissionInput! + ): SalesforceUpdateContentWorkspacePermissionPayload! """ Update BusinessHours """ @@ -38137,7 +38280,9 @@ type SalesforceMutation { """ Update UserAppMenuCustomization """ - updateUserAppMenuCustomization(input: SalesforceUpdateUserAppMenuCustomizationInput!): SalesforceUpdateUserAppMenuCustomizationPayload! + updateUserAppMenuCustomization( + input: SalesforceUpdateUserAppMenuCustomizationInput! + ): SalesforceUpdateUserAppMenuCustomizationPayload! """ Update Announcement """ @@ -38169,7 +38314,9 @@ type SalesforceMutation { """ Update SecurityCustomBaseline """ - updateSecurityCustomBaseline(input: SalesforceUpdateSecurityCustomBaselineInput!): SalesforceUpdateSecurityCustomBaselinePayload! + updateSecurityCustomBaseline( + input: SalesforceUpdateSecurityCustomBaselineInput! + ): SalesforceUpdateSecurityCustomBaselinePayload! """ Update AuraDefinition """ @@ -38197,7 +38344,9 @@ type SalesforceMutation { """ Update ContentWorkspaceMember """ - updateContentWorkspaceMember(input: SalesforceUpdateContentWorkspaceMemberInput!): SalesforceUpdateContentWorkspaceMemberPayload! + updateContentWorkspaceMember( + input: SalesforceUpdateContentWorkspaceMemberInput! + ): SalesforceUpdateContentWorkspaceMemberPayload! """ Update ContentWorkspace """ @@ -38221,7 +38370,9 @@ type SalesforceMutation { """ Update CollaborationGroupMember """ - updateCollaborationGroupMember(input: SalesforceUpdateCollaborationGroupMemberInput!): SalesforceUpdateCollaborationGroupMemberPayload! + updateCollaborationGroupMember( + input: SalesforceUpdateCollaborationGroupMemberInput! + ): SalesforceUpdateCollaborationGroupMemberPayload! """ Update AssetRelationship """ @@ -38233,7 +38384,9 @@ type SalesforceMutation { """ Update OpportunityContactRole """ - updateOpportunityContactRole(input: SalesforceUpdateOpportunityContactRoleInput!): SalesforceUpdateOpportunityContactRolePayload! + updateOpportunityContactRole( + input: SalesforceUpdateOpportunityContactRoleInput! + ): SalesforceUpdateOpportunityContactRolePayload! """ Update Account """ @@ -38265,7 +38418,9 @@ type SalesforceMutation { """ Update UserProvisioningRequest """ - updateUserProvisioningRequest(input: SalesforceUpdateUserProvisioningRequestInput!): SalesforceUpdateUserProvisioningRequestPayload! + updateUserProvisioningRequest( + input: SalesforceUpdateUserProvisioningRequestInput! + ): SalesforceUpdateUserProvisioningRequestPayload! """ Update AccountContactRole """ @@ -38293,7 +38448,9 @@ type SalesforceMutation { """ Update ChatterExtensionConfig """ - updateChatterExtensionConfig(input: SalesforceUpdateChatterExtensionConfigInput!): SalesforceUpdateChatterExtensionConfigPayload! + updateChatterExtensionConfig( + input: SalesforceUpdateChatterExtensionConfigInput! + ): SalesforceUpdateChatterExtensionConfigPayload! """ Update ListEmailShare """ @@ -38369,7 +38526,9 @@ type SalesforceMutation { """ Update CaseTeamTemplateMember """ - updateCaseTeamTemplateMember(input: SalesforceUpdateCaseTeamTemplateMemberInput!): SalesforceUpdateCaseTeamTemplateMemberPayload! + updateCaseTeamTemplateMember( + input: SalesforceUpdateCaseTeamTemplateMemberInput! + ): SalesforceUpdateCaseTeamTemplateMemberPayload! """ Update IdeaComment """ @@ -38377,7 +38536,9 @@ type SalesforceMutation { """ Update OpportunityCompetitor """ - updateOpportunityCompetitor(input: SalesforceUpdateOpportunityCompetitorInput!): SalesforceUpdateOpportunityCompetitorPayload! + updateOpportunityCompetitor( + input: SalesforceUpdateOpportunityCompetitorInput! + ): SalesforceUpdateOpportunityCompetitorPayload! """ Update ContentDocumentLink """ @@ -38413,7 +38574,9 @@ type SalesforceMutation { """ Update PlatformCachePartitionType """ - updatePlatformCachePartitionType(input: SalesforceUpdatePlatformCachePartitionTypeInput!): SalesforceUpdatePlatformCachePartitionTypePayload! + updatePlatformCachePartitionType( + input: SalesforceUpdatePlatformCachePartitionTypeInput! + ): SalesforceUpdatePlatformCachePartitionTypePayload! """ Update DandBCompany """ @@ -38425,7 +38588,9 @@ type SalesforceMutation { """ Update TransactionSecurityPolicy """ - updateTransactionSecurityPolicy(input: SalesforceUpdateTransactionSecurityPolicyInput!): SalesforceUpdateTransactionSecurityPolicyPayload! + updateTransactionSecurityPolicy( + input: SalesforceUpdateTransactionSecurityPolicyInput! + ): SalesforceUpdateTransactionSecurityPolicyPayload! """ Update PushTopic """ @@ -38461,7 +38626,9 @@ type SalesforceMutation { """ Update UserProvisioningConfig """ - updateUserProvisioningConfig(input: SalesforceUpdateUserProvisioningConfigInput!): SalesforceUpdateUserProvisioningConfigPayload! + updateUserProvisioningConfig( + input: SalesforceUpdateUserProvisioningConfigInput! + ): SalesforceUpdateUserProvisioningConfigPayload! """ Update DuplicateRecordItem """ @@ -38469,7 +38636,9 @@ type SalesforceMutation { """ Update UserListViewCriterion """ - updateUserListViewCriterion(input: SalesforceUpdateUserListViewCriterionInput!): SalesforceUpdateUserListViewCriterionPayload! + updateUserListViewCriterion( + input: SalesforceUpdateUserListViewCriterionInput! + ): SalesforceUpdateUserListViewCriterionPayload! """ Update OrderItem """ @@ -38485,7 +38654,9 @@ type SalesforceMutation { """ Update LightningComponentBundle """ - updateLightningComponentBundle(input: SalesforceUpdateLightningComponentBundleInput!): SalesforceUpdateLightningComponentBundlePayload! + updateLightningComponentBundle( + input: SalesforceUpdateLightningComponentBundleInput! + ): SalesforceUpdateLightningComponentBundlePayload! """ Update ApexTestRunResult """ @@ -38501,11 +38672,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 +38692,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 +38712,9 @@ type SalesforceMutation { """ Delete LightningComponentResource by its id. """ - deleteLightningComponentResource(input: SalesforceDeleteLightningComponentResourceInput!): SalesforceDeleteLightningComponentResourcePayload! + deleteLightningComponentResource( + input: SalesforceDeleteLightningComponentResourceInput! + ): SalesforceDeleteLightningComponentResourcePayload! """ Delete ApexComponent by its id. """ @@ -38557,7 +38738,9 @@ type SalesforceMutation { """ Delete CollaborationGroupMemberRequest by its id. """ - deleteCollaborationGroupMemberRequest(input: SalesforceDeleteCollaborationGroupMemberRequestInput!): SalesforceDeleteCollaborationGroupMemberRequestPayload! + deleteCollaborationGroupMemberRequest( + input: SalesforceDeleteCollaborationGroupMemberRequestInput! + ): SalesforceDeleteCollaborationGroupMemberRequestPayload! """ Delete MacroShare by its id. """ @@ -38597,11 +38780,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 +38800,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 +38816,9 @@ type SalesforceMutation { """ Delete ProcessInstanceWorkitem by its id. """ - deleteProcessInstanceWorkitem(input: SalesforceDeleteProcessInstanceWorkitemInput!): SalesforceDeleteProcessInstanceWorkitemPayload! + deleteProcessInstanceWorkitem( + input: SalesforceDeleteProcessInstanceWorkitemInput! + ): SalesforceDeleteProcessInstanceWorkitemPayload! """ Delete UserProvAccount by its id. """ @@ -38637,7 +38830,9 @@ type SalesforceMutation { """ Delete ApexEmailNotification by its id. """ - deleteApexEmailNotification(input: SalesforceDeleteApexEmailNotificationInput!): SalesforceDeleteApexEmailNotificationPayload! + deleteApexEmailNotification( + input: SalesforceDeleteApexEmailNotificationInput! + ): SalesforceDeleteApexEmailNotificationPayload! """ Delete CategoryNode by its id. """ @@ -38653,7 +38848,9 @@ type SalesforceMutation { """ Delete CollaborationInvitation by its id. """ - deleteCollaborationInvitation(input: SalesforceDeleteCollaborationInvitationInput!): SalesforceDeleteCollaborationInvitationPayload! + deleteCollaborationInvitation( + input: SalesforceDeleteCollaborationInvitationInput! + ): SalesforceDeleteCollaborationInvitationPayload! """ Delete AdditionalNumber by its id. """ @@ -38677,11 +38874,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 +38918,9 @@ type SalesforceMutation { """ Delete UserProvAccountStaging by its id. """ - deleteUserProvAccountStaging(input: SalesforceDeleteUserProvAccountStagingInput!): SalesforceDeleteUserProvAccountStagingPayload! + deleteUserProvAccountStaging( + input: SalesforceDeleteUserProvAccountStagingInput! + ): SalesforceDeleteUserProvAccountStagingPayload! """ Delete FlowInterviewShare by its id. """ @@ -38725,7 +38928,9 @@ type SalesforceMutation { """ Delete OrgDeleteRequestShare by its id. """ - deleteOrgDeleteRequestShare(input: SalesforceDeleteOrgDeleteRequestShareInput!): SalesforceDeleteOrgDeleteRequestSharePayload! + deleteOrgDeleteRequestShare( + input: SalesforceDeleteOrgDeleteRequestShareInput! + ): SalesforceDeleteOrgDeleteRequestSharePayload! """ Delete ApexTestResult by its id. """ @@ -38749,7 +38954,9 @@ type SalesforceMutation { """ Delete EmailServicesFunction by its id. """ - deleteEmailServicesFunction(input: SalesforceDeleteEmailServicesFunctionInput!): SalesforceDeleteEmailServicesFunctionPayload! + deleteEmailServicesFunction( + input: SalesforceDeleteEmailServicesFunctionInput! + ): SalesforceDeleteEmailServicesFunctionPayload! """ Delete OrgWideEmailAddress by its id. """ @@ -38765,7 +38972,9 @@ type SalesforceMutation { """ Delete ContentTagSubscription by its id. """ - deleteContentTagSubscription(input: SalesforceDeleteContentTagSubscriptionInput!): SalesforceDeleteContentTagSubscriptionPayload! + deleteContentTagSubscription( + input: SalesforceDeleteContentTagSubscriptionInput! + ): SalesforceDeleteContentTagSubscriptionPayload! """ Delete Contract by its id. """ @@ -38781,7 +38990,9 @@ type SalesforceMutation { """ Delete ContentWorkspacePermission by its id. """ - deleteContentWorkspacePermission(input: SalesforceDeleteContentWorkspacePermissionInput!): SalesforceDeleteContentWorkspacePermissionPayload! + deleteContentWorkspacePermission( + input: SalesforceDeleteContentWorkspacePermissionInput! + ): SalesforceDeleteContentWorkspacePermissionPayload! """ Delete ContentNotification by its id. """ @@ -38797,7 +39008,9 @@ type SalesforceMutation { """ Delete UserAppMenuCustomization by its id. """ - deleteUserAppMenuCustomization(input: SalesforceDeleteUserAppMenuCustomizationInput!): SalesforceDeleteUserAppMenuCustomizationPayload! + deleteUserAppMenuCustomization( + input: SalesforceDeleteUserAppMenuCustomizationInput! + ): SalesforceDeleteUserAppMenuCustomizationPayload! """ Delete TopicUserEvent by its id. """ @@ -38825,7 +39038,9 @@ type SalesforceMutation { """ Delete SecurityCustomBaseline by its id. """ - deleteSecurityCustomBaseline(input: SalesforceDeleteSecurityCustomBaselineInput!): SalesforceDeleteSecurityCustomBaselinePayload! + deleteSecurityCustomBaseline( + input: SalesforceDeleteSecurityCustomBaselineInput! + ): SalesforceDeleteSecurityCustomBaselinePayload! """ Delete AuraDefinition by its id. """ @@ -38861,7 +39076,9 @@ type SalesforceMutation { """ Delete ContentWorkspaceMember by its id. """ - deleteContentWorkspaceMember(input: SalesforceDeleteContentWorkspaceMemberInput!): SalesforceDeleteContentWorkspaceMemberPayload! + deleteContentWorkspaceMember( + input: SalesforceDeleteContentWorkspaceMemberInput! + ): SalesforceDeleteContentWorkspaceMemberPayload! """ Delete QueueSobject by its id. """ @@ -38889,7 +39106,9 @@ type SalesforceMutation { """ Delete CollaborationGroupFeed by its id. """ - deleteCollaborationGroupFeed(input: SalesforceDeleteCollaborationGroupFeedInput!): SalesforceDeleteCollaborationGroupFeedPayload! + deleteCollaborationGroupFeed( + input: SalesforceDeleteCollaborationGroupFeedInput! + ): SalesforceDeleteCollaborationGroupFeedPayload! """ Delete UserPreference by its id. """ @@ -38897,7 +39116,9 @@ type SalesforceMutation { """ Delete CollaborationGroupMember by its id. """ - deleteCollaborationGroupMember(input: SalesforceDeleteCollaborationGroupMemberInput!): SalesforceDeleteCollaborationGroupMemberPayload! + deleteCollaborationGroupMember( + input: SalesforceDeleteCollaborationGroupMemberInput! + ): SalesforceDeleteCollaborationGroupMemberPayload! """ Delete AssetRelationship by its id. """ @@ -38913,7 +39134,9 @@ type SalesforceMutation { """ Delete OpportunityContactRole by its id. """ - deleteOpportunityContactRole(input: SalesforceDeleteOpportunityContactRoleInput!): SalesforceDeleteOpportunityContactRolePayload! + deleteOpportunityContactRole( + input: SalesforceDeleteOpportunityContactRoleInput! + ): SalesforceDeleteOpportunityContactRolePayload! """ Delete CaseSolution by its id. """ @@ -38941,7 +39164,9 @@ type SalesforceMutation { """ Delete AssetRelationshipFeed by its id. """ - deleteAssetRelationshipFeed(input: SalesforceDeleteAssetRelationshipFeedInput!): SalesforceDeleteAssetRelationshipFeedPayload! + deleteAssetRelationshipFeed( + input: SalesforceDeleteAssetRelationshipFeedInput! + ): SalesforceDeleteAssetRelationshipFeedPayload! """ Delete CampaignMember by its id. """ @@ -38953,11 +39178,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 +39218,9 @@ type SalesforceMutation { """ Delete ContentWorkspaceSubscription by its id. """ - deleteContentWorkspaceSubscription(input: SalesforceDeleteContentWorkspaceSubscriptionInput!): SalesforceDeleteContentWorkspaceSubscriptionPayload! + deleteContentWorkspaceSubscription( + input: SalesforceDeleteContentWorkspaceSubscriptionInput! + ): SalesforceDeleteContentWorkspaceSubscriptionPayload! """ Delete FeedAttachment by its id. """ @@ -39001,7 +39232,9 @@ type SalesforceMutation { """ Delete ChatterExtensionConfig by its id. """ - deleteChatterExtensionConfig(input: SalesforceDeleteChatterExtensionConfigInput!): SalesforceDeleteChatterExtensionConfigPayload! + deleteChatterExtensionConfig( + input: SalesforceDeleteChatterExtensionConfigInput! + ): SalesforceDeleteChatterExtensionConfigPayload! """ Delete CampaignFeed by its id. """ @@ -39093,7 +39326,9 @@ type SalesforceMutation { """ Delete CaseTeamTemplateMember by its id. """ - deleteCaseTeamTemplateMember(input: SalesforceDeleteCaseTeamTemplateMemberInput!): SalesforceDeleteCaseTeamTemplateMemberPayload! + deleteCaseTeamTemplateMember( + input: SalesforceDeleteCaseTeamTemplateMemberInput! + ): SalesforceDeleteCaseTeamTemplateMemberPayload! """ Delete GroupMember by its id. """ @@ -39101,7 +39336,9 @@ type SalesforceMutation { """ Delete CaseTeamTemplateRecord by its id. """ - deleteCaseTeamTemplateRecord(input: SalesforceDeleteCaseTeamTemplateRecordInput!): SalesforceDeleteCaseTeamTemplateRecordPayload! + deleteCaseTeamTemplateRecord( + input: SalesforceDeleteCaseTeamTemplateRecordInput! + ): SalesforceDeleteCaseTeamTemplateRecordPayload! """ Delete IdeaComment by its id. """ @@ -39109,7 +39346,9 @@ type SalesforceMutation { """ Delete OpportunityCompetitor by its id. """ - deleteOpportunityCompetitor(input: SalesforceDeleteOpportunityCompetitorInput!): SalesforceDeleteOpportunityCompetitorPayload! + deleteOpportunityCompetitor( + input: SalesforceDeleteOpportunityCompetitorInput! + ): SalesforceDeleteOpportunityCompetitorPayload! """ Delete ContentDocumentLink by its id. """ @@ -39161,7 +39400,9 @@ type SalesforceMutation { """ Delete PlatformCachePartitionType by its id. """ - deletePlatformCachePartitionType(input: SalesforceDeletePlatformCachePartitionTypeInput!): SalesforceDeletePlatformCachePartitionTypePayload! + deletePlatformCachePartitionType( + input: SalesforceDeletePlatformCachePartitionTypeInput! + ): SalesforceDeletePlatformCachePartitionTypePayload! """ Delete DandBCompany by its id. """ @@ -39173,7 +39414,9 @@ type SalesforceMutation { """ Delete TransactionSecurityPolicy by its id. """ - deleteTransactionSecurityPolicy(input: SalesforceDeleteTransactionSecurityPolicyInput!): SalesforceDeleteTransactionSecurityPolicyPayload! + deleteTransactionSecurityPolicy( + input: SalesforceDeleteTransactionSecurityPolicyInput! + ): SalesforceDeleteTransactionSecurityPolicyPayload! """ Delete PushTopic by its id. """ @@ -39205,7 +39448,9 @@ type SalesforceMutation { """ Delete ContentVersionComment by its id. """ - deleteContentVersionComment(input: SalesforceDeleteContentVersionCommentInput!): SalesforceDeleteContentVersionCommentPayload! + deleteContentVersionComment( + input: SalesforceDeleteContentVersionCommentInput! + ): SalesforceDeleteContentVersionCommentPayload! """ Delete UserFeed by its id. """ @@ -39217,7 +39462,9 @@ type SalesforceMutation { """ Delete UserProvisioningConfig by its id. """ - deleteUserProvisioningConfig(input: SalesforceDeleteUserProvisioningConfigInput!): SalesforceDeleteUserProvisioningConfigPayload! + deleteUserProvisioningConfig( + input: SalesforceDeleteUserProvisioningConfigInput! + ): SalesforceDeleteUserProvisioningConfigPayload! """ Delete DuplicateRecordItem by its id. """ @@ -39225,11 +39472,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 +39492,9 @@ type SalesforceMutation { """ Delete CollaborationGroupRecord by its id. """ - deleteCollaborationGroupRecord(input: SalesforceDeleteCollaborationGroupRecordInput!): SalesforceDeleteCollaborationGroupRecordPayload! + deleteCollaborationGroupRecord( + input: SalesforceDeleteCollaborationGroupRecordInput! + ): SalesforceDeleteCollaborationGroupRecordPayload! """ Delete ApexLog by its id. """ @@ -39257,7 +39510,9 @@ type SalesforceMutation { """ Delete LightningComponentBundle by its id. """ - deleteLightningComponentBundle(input: SalesforceDeleteLightningComponentBundleInput!): SalesforceDeleteLightningComponentBundlePayload! + deleteLightningComponentBundle( + input: SalesforceDeleteLightningComponentBundleInput! + ): SalesforceDeleteLightningComponentBundlePayload! """ Delete TopicAssignment by its id. """ @@ -39291,83 +39546,55 @@ type NetlifyPassthroughMutation { """ Make a POST request to the Netlify API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + post( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PUT request to the Netlify API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + put( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PATCH request to the Netlify API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + patch( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a DELETE request to the Netlify API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + delete( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } input NetlifyDeploySiteCapabilitiesArg { @@ -39804,83 +40031,55 @@ type MixpanelPassthroughMutation { """ Make a POST request to the Mixpanel API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + post( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PUT request to the Mixpanel API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + put( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PATCH request to the Mixpanel API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + patch( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a DELETE request to the Mixpanel API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + delete( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } """ @@ -39908,83 +40107,55 @@ type MeetupPassthroughMutation { """ Make a POST request to the Meetup API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + post( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PUT request to the Meetup API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + put( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PATCH request to the Meetup API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + patch( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a DELETE request to the Meetup API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + delete( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } """ @@ -40012,83 +40183,55 @@ type MailchimpPassthroughMutation { """ Make a POST request to the Mailchimp API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + post( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PUT request to the Mailchimp API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + put( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PATCH request to the Mailchimp API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + patch( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a DELETE request to the Mailchimp API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + delete( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } """ @@ -40236,83 +40379,55 @@ type HubspotPassthroughMutation { """ Make a POST request to the Hubspot API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + post( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PUT request to the Hubspot API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + put( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PATCH request to the Hubspot API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + patch( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a DELETE request to the Hubspot API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + delete( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } """ @@ -41044,27 +41159,19 @@ type HubspotMutation { """ Create a new contact in HubSpot. The contact will be created instantly inside of HubSpot, and will be assigned a unique ID (vid) """ - createContact(""" - Input to create contact. - """ input: HubspotCreateContactInput!): HubspotCreateContactPayload! + createContact(input: HubspotCreateContactInput!): HubspotCreateContactPayload! """ Update a contact in HubSpot. """ - updateContact(""" - Input to update a contact. - """ input: HubspotUpdateContactInput!): HubspotUpdateContactPayload! + updateContact(input: HubspotUpdateContactInput!): HubspotUpdateContactPayload! """ Update a contact in HubSpot by email address. """ - updateContactByEmail(""" - Input to update a contact by email. - """ input: HubspotUpdateContactByEmailInput!): HubspotUpdateContactPayload! + updateContactByEmail(input: HubspotUpdateContactByEmailInput!): HubspotUpdateContactPayload! """ Create a contact if it doesn't exist in an account already, or update it with the latest property values if it does. """ - upsertContact(""" - Input to update a contact by email. - """ input: HubspotUpdateContactByEmailInput!): HubspotUpsertContactPayload! + upsertContact(input: HubspotUpdateContactByEmailInput!): HubspotUpsertContactPayload! """ Make a REST API call to the Hubspot API. @@ -41374,7 +41481,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 +41697,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 +41719,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! } """ @@ -41620,83 +41743,55 @@ type DevToPassthroughMutation { """ Make a POST request to the Dev.to API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + post( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PUT request to the Dev.to API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + put( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a PATCH request to the Dev.to API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + patch( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! """ Make a DELETE request to the Dev.to API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete(""" - The body to send. Only provide one of body or jsonBody. - """ 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 """ - The Accept header to set in the API. - """ accept: String """ - The Content-Type header to set in the API. - """ contentType: String """ - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + delete( + body: String + jsonBody: JSON + accept: String + contentType: String + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } input DevToDestroyWebhookInput { @@ -42029,322 +42124,139 @@ type AirtableMutation { """ Creates a new record on the given table in the given base. """ - createRecord(fields: [AirtableRecordFieldArg!]! """ - Table to create the record in - """ 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! + createRecord( + fields: [AirtableRecordFieldArg!]! + tableName: String! + 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!]! """ - Id of the record to update. - """ recordId: String! """ - Table that the record lives in. - """ 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! + updateRecord( + fields: [AirtableRecordFieldArg!]! + recordId: String! + tableName: String! + 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!]! """ - Id of the record to replace. - """ recordId: String! """ - Table that the record lives in. - """ 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! + replaceRecord( + fields: [AirtableRecordFieldArg!]! + recordId: String! + tableName: String! + baseId: String! + ): AirtableRecordModificationPayload! """ Deletes a record on the given table in the given base. """ - deleteRecord(""" - Id of the record to delete. - """ recordId: String! """ - Table that the record lives in. - """ 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! + deleteRecord(recordId: String!, tableName: String!, baseId: String!): AirtableDeleteRecordPayload! } type Mutation { """ The root for Airtable mutations """ - airtable(""" - 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 """ - 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.") + airtable(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): AirtableMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Cloudflare mutations """ - cloudflare(""" - 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 """ - 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.") + cloudflare(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): CloudflareMutationNamespace! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Dev.to mutations """ - devTo(""" - 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 """ - 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.") + devTo(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): DevToMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Google mutations """ - google(""" - 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 """ - 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.") + google(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): GoogleMutations! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Hubspot mutations """ - hubspot(""" - 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 """ - 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.") + hubspot(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): HubspotMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Intercom mutations """ - intercom(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): IntercomMutation! + intercom(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): IntercomMutation! """ The root for Mailchimp mutations """ - mailchimp(""" - 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 """ - 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.") + mailchimp(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): MailchimpMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Meetup mutations """ - meetup(""" - 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 """ - 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.") + meetup(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): MeetupMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Mixpanel mutations """ - mixpanel(""" - 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 """ - 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.") + mixpanel(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): MixpanelMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Netlify mutations """ - netlify(""" - 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 """ - 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.") + netlify(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): NetlifyMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Salesforce mutations """ - salesforce(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): SalesforceMutation! + salesforce(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): SalesforceMutation! """ The root for Slack mutations """ - slack(""" - 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 """ - 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.") + slack(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): SlackMutationNamespace! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Spotify mutations """ - spotify(""" - 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 """ - 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.") + spotify(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): SpotifyMutationNamespace! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Stripe mutations """ - stripe(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): StripeMutationNamespace! + stripe(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): StripeMutationNamespace! """ The root for Trello mutations """ - trello(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): TrelloMutation! + trello(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): TrelloMutation! """ The root for Twilio mutations """ - twilio(""" - 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 """ - 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.") + twilio(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): TwilioMutationNamespace! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Twitch mutations """ - twitchTv(""" - 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 """ - 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.") + twitchTv(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): TwitchTvMutation! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Twitter mutations """ - twitter(""" - 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 """ - 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.") + twitter(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): TwitterMutationNamespace! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for YouTube mutations """ - youTube(""" - 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 """ - 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.") + youTube(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): YouTubeMutationNamespace! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Zeit mutations """ - zeit(""" - 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 """ - 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.") + zeit(userIds: OneGraphServiceUserIds, 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. - - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): BrexRootMutationType - eventil(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): EventilMutation - gitHub(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): GitHubMutation - productHunt(""" - 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 """ - 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.") + brex(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): BrexRootMutationType + eventil(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): EventilMutation + gitHub(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): GitHubMutation + productHunt(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): ProductHuntMutation + 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! } @@ -42710,9 +42622,7 @@ type RssQuery { """ """ - rss2Feed(""" - The source of the RSS2 feed - """ url: String!): Rss2Channel! + rss2Feed(url: String!): Rss2Channel! } input OneGraphSetAuthGuardianRuleEffectHasuraSetSessionVariableInput { @@ -43327,11 +43237,7 @@ type OneGraphApp { """ Subscriptions created with this app """ - subscriptions(""" - Fiter by status of the subscription - """ status: OneGraphAppSubscriptionsStatusEnumArg """ - How many subsriptions to fetch - """ first: Int): OneGraphAppSubscriptionsConnection! + subscriptions(status: OneGraphAppSubscriptionsStatusEnumArg, first: Int): OneGraphAppSubscriptionsConnection! """ The JWT settings for this app """ @@ -43339,9 +43245,7 @@ type OneGraphApp { """ Activity related to this app """ - auditLogs(""" - How many log items to pull from the front of the collection, maximum of `250` - """ first: Int): OneGraphAppLogConnection! + auditLogs(first: Int): OneGraphAppLogConnection! """ Sites on Netlify associated with this app. OneGraph will allow CORS and authentication redirects to all previews, branch, and production deploys of these sites. """ @@ -43349,11 +43253,7 @@ type OneGraphApp { """ List of persisted queries for this app """ - persistedQueries(""" - Returns results after the provided cursor. - """ after: String """ - How many persisted queries to return. Defaults to 10, max 100. - """ first: Int): OneGraphPersistedQueryConnection! + persistedQueries(after: String, first: Int): OneGraphPersistedQueryConnection! """ GitHub repos for the app that can have subscriptions on OneGraph. """ @@ -43478,13 +43378,9 @@ type OneGraphServiceQuery { queries: [OneGraphQuery!]! searchQueries(query: String!): [OneGraphQuery!]! apps: [OneGraphApp!]! - app(""" - App id - """ id: String!): OneGraphApp! + app(id: String!): OneGraphApp! orgs: [OneGraphOrg!]! - org(""" - Org id - """ id: String!): OneGraphOrg! + org(id: String!): OneGraphOrg! serverInfo: OneGraphServerInfo! authGuardianPreview(input: OneGraphSetAuthGuardianInput!): OneGraphSetAuthGuardianResponsePayload } @@ -43568,15 +43464,18 @@ type EventilQuery { """ Events list """ - 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 """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): EventilEventConnection + events( + limit: Int + where: String + name: String + topics: [String] + topic: String + featured: Boolean + before: String + last: Int + after: String + first: Int + ): EventilEventConnection """ Return resource owner """ @@ -43584,15 +43483,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 } """ @@ -43634,45 +43533,28 @@ type ProductHuntViewer { """ Look up goals of the viewer. """ - goals(""" - Define order for the Goals. - """ order: ProductHuntGoalsOrder """ - Select Goals which are set as current or not current depending on given value. - """ current: Boolean """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntGoalConnection! + goals( + order: ProductHuntGoalsOrder + current: Boolean + before: String + last: Int + after: String + first: Int + ): ProductHuntGoalConnection! """ Look up maker groups the viewer is accepted member of. """ - makerGroups(""" - Define order for the MakerGroups. - """ order: ProductHuntMakerGroupsOrder """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntMakerGroupConnection! + makerGroups( + order: ProductHuntMakerGroupsOrder + before: String + last: Int + after: String + first: Int + ): ProductHuntMakerGroupConnection! """ Look up maker projects the viewer is a maintainer(either created or maintained by) of. """ - makerProjects(""" - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntMakerProjectConnection! + makerProjects(before: String, last: Int, after: String, first: Int): ProductHuntMakerProjectConnection! """ User who is the viewer of the API. """ @@ -43818,7 +43700,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. """ @@ -43975,15 +43857,7 @@ interface ProductHuntTopicableInterface { """ Look up topics that are associated with the object. """ - topics(""" - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntTopicConnection! + topics(before: String, last: Int, after: String, first: Int): ProductHuntTopicConnection! } """ @@ -44009,7 +43883,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. """ @@ -44089,11 +43963,7 @@ type ProductHuntMedia { """ Public URL for the media object. Incase of videos this URL represents thumbnail generated from video. """ - url(""" - Set height of the image to given value. - """ height: Int """ - Set width of the image to given value. - """ width: Int): String! + url(height: Int, width: Int): String! """ Video URL of the media object. """ @@ -44115,19 +43985,14 @@ interface ProductHuntVotableInterface { """ """ - votes(""" - Select Votes which were created before the given date and time. - """ createdBefore: String """ - Select Votes which were created after the given date and time. - """ createdAfter: String """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntVoteConnection! + votes( + createdBefore: String + createdAfter: String + before: String + last: Int + after: String + first: Int + ): ProductHuntVoteConnection! """ Number of votes that the object has currently. """ @@ -44227,7 +44092,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. """ @@ -44235,39 +44100,15 @@ type ProductHuntUser { """ Look up collections that the user is following. """ - followedCollections(""" - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntCollectionConnection! + followedCollections(before: String, last: Int, after: String, first: Int): ProductHuntCollectionConnection! """ Look up other users who are following the user. """ - followers(""" - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntUserConnection! + followers(before: String, last: Int, after: String, first: Int): ProductHuntUserConnection! """ Look up other users who are being followed by the user. """ - following(""" - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntUserConnection! + following(before: String, last: Int, after: String, first: Int): ProductHuntUserConnection! """ Headline text of the user. """ @@ -44291,15 +44132,7 @@ type ProductHuntUser { """ Look up posts that the user has made. """ - madePosts(""" - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntPostConnection! + madePosts(before: String, last: Int, after: String, first: Int): ProductHuntPostConnection! """ Name of the user. """ @@ -44311,15 +44144,7 @@ type ProductHuntUser { """ Look up posts that the user has submitted. """ - submittedPosts(""" - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntPostConnection! + submittedPosts(before: String, last: Int, after: String, first: Int): ProductHuntPostConnection! """ Twitter username of the user. """ @@ -44335,15 +44160,7 @@ type ProductHuntUser { """ Look up posts that the user has voted for. """ - votedPosts(""" - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntPostConnection! + votedPosts(before: String, last: Int, after: String, first: Int): ProductHuntPostConnection! """ URL for the user's website """ @@ -44395,17 +44212,13 @@ type ProductHuntComment implements ProductHuntVotableInterface { """ Lookup comments that were posted on the comment itself. """ - replies(""" - Define order for the Comments. - """ order: ProductHuntCommentsOrder """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntCommentConnection! + replies( + order: ProductHuntCommentsOrder + before: String + last: Int + after: String + first: Int + ): ProductHuntCommentConnection! """ Public URL of the comment. """ @@ -44421,19 +44234,14 @@ type ProductHuntComment implements ProductHuntVotableInterface { """ """ - votes(""" - Select Votes which were created before the given date and time. - """ createdBefore: String """ - Select Votes which were created after the given date and time. - """ createdAfter: String """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntVoteConnection! + votes( + createdBefore: String + createdAfter: String + before: String + last: Int + after: String + first: Int + ): ProductHuntVoteConnection! """ Number of votes that the object has currently. """ @@ -44533,29 +44341,17 @@ type ProductHuntPost implements ProductHuntVotableInterface & ProductHuntTopicab """ Lookup collections which the Post is part of. """ - collections(""" - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntCollectionConnection! + collections(before: String, last: Int, after: String, first: Int): ProductHuntCollectionConnection! """ Lookup comments on the Post. """ - comments(""" - Define order for the Comments. - """ order: ProductHuntCommentsOrder """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntCommentConnection! + comments( + order: ProductHuntCommentsOrder + before: String + last: Int + after: String + first: Int + ): ProductHuntCommentConnection! """ Number of comments made on the Post. """ @@ -44623,15 +44419,7 @@ type ProductHuntPost implements ProductHuntVotableInterface & ProductHuntTopicab """ Look up topics that are associated with the object. """ - topics(""" - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntTopicConnection! + topics(before: String, last: Int, after: String, first: Int): ProductHuntTopicConnection! """ URL of the Post on Product Hunt. """ @@ -44647,19 +44435,14 @@ type ProductHuntPost implements ProductHuntVotableInterface & ProductHuntTopicab """ """ - votes(""" - Select Votes which were created before the given date and time. - """ createdBefore: String """ - Select Votes which were created after the given date and time. - """ createdAfter: String """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntVoteConnection! + votes( + createdBefore: String + createdAfter: String + before: String + last: Int + after: String + first: Int + ): ProductHuntVoteConnection! """ Number of votes that the object has currently. """ @@ -44709,7 +44492,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. """ @@ -44741,15 +44524,7 @@ type ProductHuntCollection implements ProductHuntTopicableInterface { """ Lookup posts which are part of the collection. """ - posts(""" - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntPostConnection! + posts(before: String, last: Int, after: String, first: Int): ProductHuntPostConnection! """ Tagline of the collection. """ @@ -44757,15 +44532,7 @@ type ProductHuntCollection implements ProductHuntTopicableInterface { """ Look up topics that are associated with the object. """ - topics(""" - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntTopicConnection! + topics(before: String, last: Int, after: String, first: Int): ProductHuntTopicConnection! """ Public URL of the goal. """ @@ -44787,153 +44554,96 @@ type ProductHuntQuery { """ Look up a Collection(only published). """ - collection(""" - URL friendly slug for the object. - """ slug: String """ - ID for the object. - """ id: ID): ProductHuntCollection + collection(slug: String, id: ID): ProductHuntCollection """ Look up Collections by various parameters. """ - collections(""" - Define order for the Collections. - """ order: ProductHuntCollectionsOrder """ - Select Collections that have been featured or not featured depending on given value. - """ featured: Boolean """ - Select Collections that are created by User with the given ID. - """ userId: ID """ - Select Collections that have the Post with the given ID. - """ postId: ID """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntCollectionConnection! + collections( + order: ProductHuntCollectionsOrder + featured: Boolean + userId: ID + postId: ID + before: String + last: Int + after: String + first: Int + ): ProductHuntCollectionConnection! """ Look up a Comment. """ - comment(""" - ID for the object. - """ id: ID!): ProductHuntComment + comment(id: ID!): ProductHuntComment """ Look up a Goal. """ - goal(""" - ID for the object. - """ id: ID!): ProductHuntGoal + goal(id: ID!): ProductHuntGoal """ Look up Goals by various parameters. """ - goals(""" - Define order for the Goals. - """ order: ProductHuntGoalsOrder """ - Select Goals that have been completed or not completed depending on given value. - """ completed: Boolean """ - Select Goals that are created in the MakerProject with given ID. - """ makerProjectId: ID """ - Select Goals that are created in the MakerGroup(Space) with given ID. - """ makerGroupId: ID """ - Select Goals that are created by User with the given ID. - """ userId: ID """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntGoalConnection! + goals( + order: ProductHuntGoalsOrder + completed: Boolean + makerProjectId: ID + makerGroupId: ID + userId: ID + before: String + last: Int + after: String + first: Int + ): ProductHuntGoalConnection! """ Look up a MakerGroup. """ - makerGroup(""" - ID for the object. - """ id: ID!): ProductHuntMakerGroup + makerGroup(id: ID!): ProductHuntMakerGroup """ Look up MakerGroups by various parameters. """ - makerGroups(""" - Define order for the MakerGroups. - """ order: ProductHuntMakerGroupsOrder """ - Select MakerGroups that the User with the given ID is accepted member of. - """ userId: ID """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntMakerGroupConnection! + makerGroups( + order: ProductHuntMakerGroupsOrder + userId: ID + before: String + last: Int + after: String + first: Int + ): ProductHuntMakerGroupConnection! """ Look up a Post. """ - post(""" - URL friendly slug for the object. - """ slug: String """ - ID for the object. - """ id: ID): ProductHuntPost + post(slug: String, id: ID): ProductHuntPost """ Look up Posts by various parameters. """ - posts(""" - Select Posts that have the given twitter url. - """ twitterUrl: String """ - Define order for the Posts. - """ order: ProductHuntPostsOrder """ - Select Posts that have the given slug as one of their topics. - """ topic: String """ - Select Posts which were posted after the given date and time. - """ postedAfter: String """ - Select Posts which were posted before the given date and time. - """ postedBefore: String """ - Select Posts that have been featured or not featured depending on given value. - """ featured: Boolean """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntPostConnection! + posts( + twitterUrl: String + order: ProductHuntPostsOrder + topic: String + postedAfter: String + postedBefore: String + featured: Boolean + before: String + last: Int + after: String + first: Int + ): ProductHuntPostConnection! """ Look up a Topic. """ - topic(""" - URL friendly slug for the object. - """ slug: String """ - ID for the object. - """ id: ID): ProductHuntTopic + topic(slug: String, id: ID): ProductHuntTopic """ Look up Topics by various parameters. """ - topics(""" - Define order for the Topics. - """ order: ProductHuntTopicsOrder """ - Select Topics whose name or aliases match the given string - """ query: String """ - Select Topics that are followed by User with the given ID. - """ followedByUserId: ID """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Returns the first _n_ elements from the list. - """ first: Int): ProductHuntTopicConnection! + topics( + order: ProductHuntTopicsOrder + query: String + followedByUserId: ID + before: String + last: Int + after: String + first: Int + ): ProductHuntTopicConnection! """ Look up a User. """ - user(""" - Username for the user. - """ username: String """ - ID for the user. - """ id: ID): ProductHuntUser + user(username: String, id: ID): ProductHuntUser """ Top level scope for currently authenticated user. Includes `goals`, `makerGroups`, `makerProjects` & `user` fields. """ @@ -44951,15 +44661,12 @@ type GithubPassthroughQuery { """ Make a GET request to the GitHub API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get(""" - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + get( + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } enum GitHubSecurityAdvisoryIdentifierType { @@ -45254,9 +44961,7 @@ type GitHubQuery { """ Look up a code of conduct by its key """ - codeOfConduct(""" - The code of conduct's key - """ key: String!): GitHubCodeOfConduct + codeOfConduct(key: String!): GitHubCodeOfConduct """ Look up a code of conduct by its key """ @@ -45264,33 +44969,23 @@ type GitHubQuery { """ Look up an enterprise by URL slug. """ - enterprise(""" - The enterprise invitation token. - """ invitationToken: String """ - The enterprise URL slug. - """ slug: String!): GitHubEnterprise + enterprise(invitationToken: String, slug: String!): GitHubEnterprise """ Look up a pending enterprise administrator invitation by invitee, enterprise and role. """ - enterpriseAdministratorInvitation(""" - The role for the business member invitation. - """ role: GitHubEnterpriseAdministratorRole! """ - The slug of the enterprise the user was invited to join. - """ enterpriseSlug: String! """ - The login of the user invited to join the business. - """ userLogin: String!): GitHubEnterpriseAdministratorInvitation + enterpriseAdministratorInvitation( + role: GitHubEnterpriseAdministratorRole! + enterpriseSlug: String! + userLogin: String! + ): GitHubEnterpriseAdministratorInvitation """ Look up a pending enterprise administrator invitation by invitation token. """ - enterpriseAdministratorInvitationByToken(""" - The invitation token sent with the invitation email. - """ invitationToken: String!): GitHubEnterpriseAdministratorInvitation + enterpriseAdministratorInvitationByToken(invitationToken: String!): GitHubEnterpriseAdministratorInvitation """ Look up an open source license by its key """ - license(""" - The license's downcased SPDX ID - """ key: String!): GitHubLicense + license(key: String!): GitHubLicense """ Return a list of known open source licenses """ @@ -45298,59 +44993,37 @@ type GitHubQuery { """ Get alphabetically sorted list of Marketplace categories """ - marketplaceCategories(""" - Returns top level categories only, excluding any subcategories. - """ excludeSubcategories: Boolean """ - Exclude categories with no listings. - """ excludeEmpty: Boolean """ - Return only the specified categories. - """ includeCategories: [String!]): [GitHubMarketplaceCategory!]! + marketplaceCategories( + excludeSubcategories: Boolean + excludeEmpty: Boolean + includeCategories: [String!] + ): [GitHubMarketplaceCategory!]! """ Look up a Marketplace category by its slug. """ - marketplaceCategory(""" - Also check topic aliases for the category slug - """ useTopicAliases: Boolean """ - The URL slug of the category. - """ slug: String!): GitHubMarketplaceCategory + marketplaceCategory(useTopicAliases: Boolean, slug: String!): GitHubMarketplaceCategory """ Look up a single Marketplace listing """ - marketplaceListing(""" - Select the listing that matches this slug. It's the short name of the listing used in its URL. - """ slug: String!): GitHubMarketplaceListing + marketplaceListing(slug: String!): GitHubMarketplaceListing """ Look up Marketplace listings """ - marketplaceListings(""" - Select only listings that offer a free trial. - """ withFreeTrialsOnly: Boolean """ - Select only listings where the primary category matches the given category slug. - """ primaryCategoryOnly: Boolean """ - Select the listings with these slugs, if they are visible to the viewer. - """ 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 """ - Select listings for products owned by the specified organization. - """ organizationId: ID """ - Select listings that can be administered by the specified user. - """ adminId: ID """ - Select listings to which user has admin access. If omitted, listings visible to the - viewer are returned. - """ viewerCanAdmin: Boolean """ - Also check topic aliases for the category slug - """ useTopicAliases: Boolean """ - Select only listings with the given category. - """ categorySlug: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubMarketplaceListingConnection! + marketplaceListings( + withFreeTrialsOnly: Boolean + primaryCategoryOnly: Boolean + slugs: [String] + allStates: Boolean + organizationId: ID + adminId: ID + viewerCanAdmin: Boolean + useTopicAliases: Boolean + categorySlug: String + last: Int + first: Int + before: String + after: String + ): GitHubMarketplaceListingConnection! """ Return information about the GitHub instance """ @@ -45358,27 +45031,19 @@ type GitHubQuery { """ Fetches an object given its ID. """ - node(""" - ID of the object. - """ id: ID!): GitHubNode + node(id: ID!): GitHubNode """ Lookup nodes by a list of IDs. """ - nodes(""" - The list of node IDs. - """ ids: [ID!]!): [GitHubNode]! + nodes(ids: [ID!]!): [GitHubNode]! """ Lookup a organization by login. """ - organization(""" - The organization's login. - """ login: String!): GitHubOrganization + organization(login: String!): GitHubOrganization """ The client's rate limit information. """ - rateLimit(""" - If true, calculate the cost for the query without evaluating it - """ dryRun: Boolean): GitHubRateLimit + rateLimit(dryRun: Boolean): GitHubRateLimit """ Hack to workaround https://github.com/facebook/relay/issues/112 re-exposing the root query object """ @@ -45386,103 +45051,69 @@ type GitHubQuery { """ Lookup a given repository by the owner and repository name. """ - repository(""" - The name of the repository - """ name: String! """ - The login field of a user or organization - """ owner: String!): GitHubRepository + repository(name: String!, owner: String!): GitHubRepository """ Lookup a repository owner (ie. either a User or an Organization) by login. """ - repositoryOwner(""" - The username to lookup the owner by. - """ login: String!): GitHubRepositoryOwner + repositoryOwner(login: String!): GitHubRepositoryOwner """ Lookup resource by a URL. """ - resource(""" - The URL. - """ url: String!): GitHubUniformResourceLocatable + resource(url: String!): GitHubUniformResourceLocatable """ Perform a search across resources. """ - search(""" - The types of search items to search within. - """ type: GitHubSearchType! """ - The search string to look for. - """ query: String! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubSearchResultItemConnection! + search( + type: GitHubSearchType! + query: String! + last: Int + first: Int + before: String + after: String + ): GitHubSearchResultItemConnection! """ GitHub Security Advisories """ - securityAdvisories(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filter advisories to those updated since a time in the past. - """ updatedSince: String """ - Filter advisories to those published since a time in the past. - """ publishedSince: String """ - Filter advisories by identifier, e.g. GHSA or CVE. - """ identifier: GitHubSecurityAdvisoryIdentifierFilter """ - Ordering options for the returned topics. - """ orderBy: GitHubSecurityAdvisoryOrder): GitHubSecurityAdvisoryConnection! + securityAdvisories( + last: Int + first: Int + before: String + after: String + updatedSince: String + publishedSince: String + identifier: GitHubSecurityAdvisoryIdentifierFilter + orderBy: GitHubSecurityAdvisoryOrder + ): GitHubSecurityAdvisoryConnection! """ Fetch a Security Advisory by its GHSA ID """ - securityAdvisory(""" - GitHub Security Advisory ID. - """ ghsaId: String!): GitHubSecurityAdvisory + securityAdvisory(ghsaId: String!): GitHubSecurityAdvisory """ Software Vulnerabilities documented by GitHub Security Advisories """ - securityVulnerabilities(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - A list of severities to filter vulnerabilities by. - """ severities: [GitHubSecurityAdvisorySeverity!] """ - A package name to filter vulnerabilities by. - """ package: String """ - An ecosystem to filter vulnerabilities by. - """ ecosystem: GitHubSecurityAdvisoryEcosystem """ - Ordering options for the returned topics. - """ orderBy: GitHubSecurityVulnerabilityOrder): GitHubSecurityVulnerabilityConnection! + securityVulnerabilities( + last: Int + first: Int + before: String + after: String + severities: [GitHubSecurityAdvisorySeverity!] + package: String + ecosystem: GitHubSecurityAdvisoryEcosystem + orderBy: GitHubSecurityVulnerabilityOrder + ): GitHubSecurityVulnerabilityConnection! """ Look up a single Sponsors Listing """ - 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.") + sponsorsListing(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. """ - topic(""" - The topic's name. - """ name: String!): GitHubTopic + topic(name: String!): GitHubTopic """ Lookup a user by login. """ - user(""" - The user's login. - """ login: String!): GitHubUser + user(login: String!): GitHubUser """ The currently authenticated user. """ @@ -46138,11 +45769,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 +45787,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 +45803,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 +45825,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 +45844,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 +45860,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 +45868,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 +45884,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 +45892,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 +45904,10 @@ type BrexRootQueryType { """ """ - validateLoyaltyProgramMembershipId(membershipId: String! loyaltyProgramId: ID!): Boolean + validateLoyaltyProgramMembershipId( + membershipId: String! + loyaltyProgramId: ID! + ): Boolean """ """ @@ -46250,7 +45915,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 +45923,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 +45935,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 +45943,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 +45955,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 +45963,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 +45978,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 +45994,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 +46021,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 +46035,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 +46043,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 +46063,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 +46147,25 @@ type ZendeskSearchResultsConnection { The root for Zendesk """ type ZendeskQuery { - 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 + search( + sortOrder: ZendeskSearchSortOrder + sortBy: ZendeskSearchSortBy + status: ZendeskSearchStatus + type: ZendeskSearchType + 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 } @@ -46718,21 +46418,15 @@ type ZeitQuery { """ Logs from a deployment to Zeit. """ - deploymentLogs(""" - The deployment id from Zeit. - """ id: String!): [ZeitDeploymentLog!] + deploymentLogs(id: String!): [ZeitDeploymentLog!] """ Whether a domain *may* be available """ - domainAvailable(""" - The domain name - """ name: String!): ZeitDomainAvailabilityStatus + domainAvailable(name: String!): ZeitDomainAvailabilityStatus """ Check domain price """ - domainPrice(""" - The domain name - """ name: String!): ZeitPriceOfADomain + domainPrice(name: String!): ZeitPriceOfADomain """ Retrieves a list of domains registered for the authenticating user. Each domain entry contains an `aliases` array listing every alias associated with the domain. The field `isExternal` is a boolean value telling whether an external nameserver is used to manage DNS records for the domain. """ @@ -47884,21 +47578,7 @@ type YouTubeCaption { """ Text of the caption track """ - body(""" - The tfmt parameter specifies that the caption track should be returned in a specific format. If the parameter is not included in the request, the track is returned in its original format. - - Supported values are: - - sbv – SubViewer subtitle - - scc – Scenarist Closed Caption format - - srt – SubRip subtitle - - ttml – Timed Text Markup Language caption - - vtt – Web Video Text Tracks caption - """ tfmt: String): String + body(tfmt: String): String } """ @@ -49108,36 +48788,42 @@ type YouTubePlaylist { """ List of items for this playlist, with pagination information. """ - items(""" - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Number of videos to fetch. - """ first: Int): YouTubePlaylistItemsConnection! + items(after: String, first: Int): YouTubePlaylistItemsConnection! } """ Root fields for YouTube """ type YouTubeQuery { - 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 """ - Number of items to fetch. - """ first: Int """ - Playlist id - """ playlistId: String!): YouTubePlaylistItemsConnection! - 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 + oldVideo(id: String!): YoutubeVideo + @deprecated(reason: "Use `YouTube video` instead") + playlist(id: String!): YouTubePlaylist! + playlistItems(after: String, first: Int, playlistId: String!): YouTubePlaylistItemsConnection! + search( + cursor: String + pageToken: String + maxResults: Int! + order: String + 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 } """ @@ -49475,11 +49161,7 @@ type USPSQuery { """ Track a USPS package """ - track(""" - Optional SourceId to report your client to USPS - """ sourceId: String """ - Tracking number for the package - """ trackId: String!): UspsTrackResponse! + track(sourceId: String, trackId: String!): UspsTrackResponse! } """ @@ -50353,15 +50035,11 @@ type UpsQuery { """ Track a UPS package """ - track(""" - Inquiry number for the package - """ inquiryNumber: String!): UpsTrackResponse! + track(inquiryNumber: String!): UpsTrackResponse! """ Track several UPS package """ - trackMultiple(""" - Inquiry numbers for the package - """ inquiryNumbers: [String!]!): [UpsTrackResponse!]! + trackMultiple(inquiryNumbers: [String!]!): [UpsTrackResponse!]! } """ @@ -50372,9 +50050,7 @@ type Twitter { """ Returns a collection of the most recent Tweets and Retweets posted by the authenticating user and the users they follow. The home timeline is central to how most users interact with the Twitter service. """ - homeTimeline(""" - Number of tweets to fetch - """ first: Int): TwitterTimeline + homeTimeline(first: Int): TwitterTimeline } """ @@ -50388,15 +50064,12 @@ type TwitchTvPassthroughQuery { """ Make a GET request to the Twitch API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get(""" - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + get( + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } """ @@ -50581,11 +50254,14 @@ 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( + dateSent: String + from: String + last: Int + first: Int + before: String + after: String + ): TwilioMessagesConnection } type TwilioIncomingPhoneNumberConnectionEdge { @@ -50761,22 +50437,25 @@ type TwilioMessagesConnection { 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 """ - Only show messages from this phone number or alphanumeric sender ID. - """ 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 + messages( + dateSent: String + from: String + to: String + last: Int + first: Int + before: String + after: String + ): TwilioMessagesConnection + incomingPhoneNumbers( + phoneNumber: String + origin: TwilioPhoneNumberOriginEnumArg + friendlyName: String + beta: Boolean + last: Int + first: Int + before: String + after: String + ): TwilioIncomingPhoneNumberConnection } """ @@ -50840,65 +50519,43 @@ type TrelloQuery { """ Find a trello member by id """ - member(""" - Find the member by username. Must provide one of username or id. - """ username: String """ - Find the member by id. Must provide one of id or username. - """ id: String): TrelloMember! + member(username: String, id: String): TrelloMember! """ Find a trello action by id """ - action(""" - Action id - """ id: String!): TrelloAction! + action(id: String!): TrelloAction! """ Find a trello board by id """ - board(""" - Board id - """ id: String!): TrelloBoard! + board(id: String!): TrelloBoard! """ Find a trello card by id """ - card(""" - Card id - """ id: String!): TrelloCard! + card(id: String!): TrelloCard! """ Find a trello checklist by id """ - checklist(""" - Checklist id - """ id: String!): TrelloChecklist! + checklist(id: String!): TrelloChecklist! """ Find a trello customField by id """ - customField(""" - CustomField id - """ id: String!): TrelloCustomFields! + customField(id: String!): TrelloCustomFields! """ Find a trello enterprise by id """ - enterprise(""" - Enterprise id - """ id: String!): TrelloEnterprise! + enterprise(id: String!): TrelloEnterprise! """ Find a trello list by id """ - list(""" - List id - """ id: String!): TrelloList! + list(id: String!): TrelloList! """ Find a trello organization by id """ - organization(""" - Organization id - """ id: String!): TrelloOrganization! + organization(id: String!): TrelloOrganization! """ Find a trello webhook by id """ - webhook(""" - Webhook id - """ id: String!): TrelloWebhook! + webhook(id: String!): TrelloWebhook! """ Lists all available emoji """ @@ -51188,31 +50845,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 @@ -51253,12 +50922,8 @@ The root for Spotify type SpotifyQuery { featuredPlaylists(limit: Int): [SpotifyPlaylist!] me: SpotifyCurrentUserProfile - artist(""" - The artist id - """ id: String!): SpotifyArtist - track(""" - The track id - """ id: String!): SpotifyTrack + artist(id: String!): SpotifyArtist + track(id: String!): SpotifyTrack search(data: SpotifySearchArg!): SpotifySearchResults } @@ -51547,12 +51212,8 @@ type SlackMembersConnection { } type Slack { - members(""" - Pagination cursor from which to retrieve additional results - """ 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! + members(after: String, first: Int): SlackMembersConnection! + member(includeLocale: Boolean, id: String!): SlackMember! channels: SlackChannelsConnection! channel(id: String!): SlackChannel } @@ -51568,15 +51229,12 @@ type SalesforcePassthroughQuery { """ Make a GET request to the Salesforce API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get(""" - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + get( + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } """ @@ -52067,5075 +51725,3490 @@ type SalesforceQuery { """ Collection of Salesforce Auth. Providers """ - authProviders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthProviderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthProviderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Auth. Providers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthProvidersConnection + authProviders( + filter: SalesforceAuthProviderConnectionFilter + sortByCustomField: String + sortByField: SalesforceAuthProviderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthProvidersConnection """ Collection of Salesforce Platform Cache Partitions """ - platformCachePartitions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePlatformCachePartitionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePlatformCachePartitionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Platform Cache Partitions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePlatformCachePartitionsConnection + platformCachePartitions( + filter: SalesforcePlatformCachePartitionConnectionFilter + sortByCustomField: String + sortByField: SalesforcePlatformCachePartitionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePlatformCachePartitionsConnection """ Collection of Salesforce Streaming Channel Shares """ - streamingChannelShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStreamingChannelShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStreamingChannelShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Streaming Channel Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceStreamingChannelSharesConnection + streamingChannelShares( + filter: SalesforceStreamingChannelShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceStreamingChannelShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceStreamingChannelSharesConnection """ Collection of Salesforce Case Comments """ - caseComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Case Comments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseCommentsConnection + caseComments( + filter: SalesforceCaseCommentConnectionFilter + sortByCustomField: String + sortByField: SalesforceCaseCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseCommentsConnection """ Collection of Salesforce Letterheads """ - brandTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBrandTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBrandTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Letterheads to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceBrandTemplatesConnection + brandTemplates( + filter: SalesforceBrandTemplateConnectionFilter + sortByCustomField: String + sortByField: SalesforceBrandTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceBrandTemplatesConnection """ Collection of Salesforce Undecided Event Relations """ - undecidedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUndecidedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Undecided Event Relations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUndecidedEventRelationsConnection + undecidedEventRelations( + filter: SalesforceUndecidedEventRelationConnectionFilter + sortByCustomField: String + sortByField: SalesforceUndecidedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUndecidedEventRelationsConnection """ Collection of Salesforce Content Delivery Views """ - contentDistributionViews(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionViewConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionViewSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Delivery Views to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionViewsConnection + contentDistributionViews( + filter: SalesforceContentDistributionViewConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentDistributionViewSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionViewsConnection """ Collection of Salesforce User Licenses """ - userLicenses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserLicenseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserLicenseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User Licenses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserLicensesConnection + userLicenses( + filter: SalesforceUserLicenseConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserLicenseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserLicensesConnection """ Collection of Salesforce Content User Subscriptions """ - contentUserSubscriptions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentUserSubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentUserSubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content User Subscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentUserSubscriptionsConnection + contentUserSubscriptions( + filter: SalesforceContentUserSubscriptionConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentUserSubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentUserSubscriptionsConnection """ Collection of Salesforce Process Instances """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Process Instances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: String + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce Cases """ - cases(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Cases to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCasesConnection + cases( + filter: SalesforceCaseConnectionFilter + sortByCustomField: String + sortByField: SalesforceCaseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCasesConnection """ Collection of Salesforce Visualforce Pages """ - apexPages(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexPageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexPageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Visualforce Pages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexPagesConnection + apexPages( + filter: SalesforceApexPageConnectionFilter + sortByCustomField: String + sortByField: SalesforceApexPageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexPagesConnection """ Collection of Salesforce LightningComponentResources """ - lightningComponentResources(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLightningComponentResourceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLightningComponentResourceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LightningComponentResources to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLightningComponentResourcesConnection + lightningComponentResources( + filter: SalesforceLightningComponentResourceConnectionFilter + sortByCustomField: String + sortByField: SalesforceLightningComponentResourceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLightningComponentResourcesConnection """ Collection of Salesforce Visualforce Components """ - apexComponents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexComponentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexComponentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Visualforce Components to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexComponentsConnection + apexComponents( + filter: SalesforceApexComponentConnectionFilter + sortByCustomField: String + sortByField: SalesforceApexComponentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexComponentsConnection """ Collection of Salesforce Forecast Shares """ - forecastShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceForecastShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceForecastShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Forecast Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceForecastSharesConnection + forecastShares( + filter: SalesforceForecastShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceForecastShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceForecastSharesConnection """ Collection of Salesforce Attachments """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: String + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce Opportunity Partners """ - opportunityPartners(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityPartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Opportunity Partners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityPartnersConnection + opportunityPartners( + filter: SalesforceOpportunityPartnerConnectionFilter + sortByCustomField: String + sortByField: SalesforceOpportunityPartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityPartnersConnection """ Collection of Salesforce Order Feeds """ - orderFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Order Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderFeedsConnection + orderFeeds( + filter: SalesforceOrderFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceOrderFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderFeedsConnection """ Collection of Salesforce Orders """ - orders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Orders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrdersConnection + orders( + filter: SalesforceOrderConnectionFilter + sortByCustomField: String + sortByField: SalesforceOrderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrdersConnection """ Collection of Salesforce Campaigns """ - campaigns(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Campaigns to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignsConnection + campaigns( + filter: SalesforceCampaignConnectionFilter + sortByCustomField: String + sortByField: SalesforceCampaignSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignsConnection """ Collection of Salesforce Group Member Requests """ - collaborationGroupMemberRequests(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Group Member Requests to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupMemberRequestsConnection + collaborationGroupMemberRequests( + filter: SalesforceCollaborationGroupMemberRequestConnectionFilter + sortByCustomField: String + sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupMemberRequestsConnection """ Collection of Salesforce Macro Shares """ - macroShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Macro Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMacroSharesConnection + macroShares( + filter: SalesforceMacroShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceMacroShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMacroSharesConnection """ Collection of Salesforce Asset Files """ - contentAssets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Asset Files to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentAssetsConnection + contentAssets( + filter: SalesforceContentAssetConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentAssetsConnection """ Collection of Salesforce Custom Permission Dependencies """ - customPermissionDependencies(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomPermissionDependencyConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Custom Permission Dependencies to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomPermissionDependencysConnection + customPermissionDependencies( + filter: SalesforceCustomPermissionDependencyConnectionFilter + sortByCustomField: String + sortByField: SalesforceCustomPermissionDependencySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomPermissionDependencysConnection """ Collection of Salesforce Account Feeds """ - accountFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Account Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountFeedsConnection + accountFeeds( + filter: SalesforceAccountFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceAccountFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountFeedsConnection """ Collection of Salesforce Custom Brand Assets """ - customBrandAssets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Custom Brand Assets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomBrandAssetsConnection + customBrandAssets( + filter: SalesforceCustomBrandAssetConnectionFilter + sortByCustomField: String + sortByField: SalesforceCustomBrandAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomBrandAssetsConnection """ Collection of Salesforce User Logins """ - userLogins(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserLoginConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserLoginSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User Logins to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserLoginsConnection + userLogins( + filter: SalesforceUserLoginConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserLoginSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserLoginsConnection """ Collection of Salesforce Stamp Assignments """ - stampAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStampAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStampAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Stamp Assignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceStampAssignmentsConnection + stampAssignments( + filter: SalesforceStampAssignmentConnectionFilter + sortByCustomField: String + sortByField: SalesforceStampAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceStampAssignmentsConnection """ Collection of Salesforce Apex Triggers """ - apexTriggers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTriggerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTriggerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Apex Triggers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTriggersConnection + apexTriggers( + filter: SalesforceApexTriggerConnectionFilter + sortByCustomField: String + sortByField: SalesforceApexTriggerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTriggersConnection """ Collection of Salesforce Sites """ - siteFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Sites to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSiteFeedsConnection + siteFeeds( + filter: SalesforceSiteFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceSiteFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSiteFeedsConnection """ Collection of Salesforce Dashboard Feeds """ - dashboardFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Dashboard Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDashboardFeedsConnection + dashboardFeeds( + filter: SalesforceDashboardFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceDashboardFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDashboardFeedsConnection """ Collection of Salesforce Apex Classes """ - apexClasses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexClassConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexClassSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Apex Classes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexClasssConnection + apexClasses( + filter: SalesforceApexClassConnectionFilter + sortByCustomField: String + sortByField: SalesforceApexClassSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexClasssConnection """ Collection of Salesforce Account Shares """ - accountShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Account Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountSharesConnection + accountShares( + filter: SalesforceAccountShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceAccountShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountSharesConnection """ Collection of Salesforce Feed Items """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Feed Items to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: String + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce Content Folder Links """ - contentFolderLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Folder Links to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentFolderLinksConnection + contentFolderLinks( + filter: SalesforceContentFolderLinkConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentFolderLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentFolderLinksConnection """ Collection of Salesforce Periods """ - periods(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePeriodConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePeriodSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Periods to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePeriodsConnection + periods( + filter: SalesforcePeriodConnectionFilter + sortByCustomField: String + sortByField: SalesforcePeriodSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePeriodsConnection """ Collection of Salesforce Dashboard Component Feeds """ - dashboardComponentFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardComponentFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Dashboard Component Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDashboardComponentFeedsConnection + dashboardComponentFeeds( + filter: SalesforceDashboardComponentFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceDashboardComponentFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDashboardComponentFeedsConnection """ Collection of Salesforce Opportunity Histories """ - opportunityHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Opportunity Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityHistorysConnection + opportunityHistories( + filter: SalesforceOpportunityHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceOpportunityHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityHistorysConnection """ Collection of Salesforce Asset Histories """ - assetHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Asset Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetHistorysConnection + assetHistories( + filter: SalesforceAssetHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceAssetHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetHistorysConnection """ Collection of Salesforce UserAppMenuCustomization Shares """ - userAppMenuCustomizationShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppMenuCustomizationShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserAppMenuCustomization Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserAppMenuCustomizationSharesConnection + userAppMenuCustomizationShares( + filter: SalesforceUserAppMenuCustomizationShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserAppMenuCustomizationSharesConnection """ Collection of Salesforce AppMenuItems """ - appMenuItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAppMenuItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAppMenuItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AppMenuItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAppMenuItemsConnection + appMenuItems( + filter: SalesforceAppMenuItemConnectionFilter + sortByCustomField: String + sortByField: SalesforceAppMenuItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAppMenuItemsConnection """ Collection of Salesforce Last Used Apps """ - userAppInfos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppInfoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppInfoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Last Used Apps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserAppInfosConnection + userAppInfos( + filter: SalesforceUserAppInfoConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserAppInfoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserAppInfosConnection """ Collection of Salesforce Action Link Group Templates """ - actionLinkGroupTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceActionLinkGroupTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceActionLinkGroupTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Action Link Group Templates to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceActionLinkGroupTemplatesConnection + actionLinkGroupTemplates( + filter: SalesforceActionLinkGroupTemplateConnectionFilter + sortByCustomField: String + sortByField: SalesforceActionLinkGroupTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceActionLinkGroupTemplatesConnection """ Collection of Salesforce User Provisioning Request Shares """ - userProvisioningRequestShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User Provisioning Request Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningRequestSharesConnection + userProvisioningRequestShares( + filter: SalesforceUserProvisioningRequestShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningRequestSharesConnection """ Collection of Salesforce Data.com Owned Entities """ - datacloudOwnedEntities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDatacloudOwnedEntityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Data.com Owned Entities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDatacloudOwnedEntitysConnection + datacloudOwnedEntities( + filter: SalesforceDatacloudOwnedEntityConnectionFilter + sortByCustomField: String + sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDatacloudOwnedEntitysConnection """ Collection of Salesforce Assets """ - assets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Assets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetsConnection + assets( + filter: SalesforceAssetConnectionFilter + sortByCustomField: String + sortByField: SalesforceAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetsConnection """ Collection of Salesforce Approval Requests """ - processInstanceWorkitems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceWorkitemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Approval Requests to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstanceWorkitemsConnection + processInstanceWorkitems( + filter: SalesforceProcessInstanceWorkitemConnectionFilter + sortByCustomField: String + sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstanceWorkitemsConnection """ Collection of Salesforce User Provisioning Accounts """ - userProvAccounts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvAccountConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvAccountSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User Provisioning Accounts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvAccountsConnection + userProvAccounts( + filter: SalesforceUserProvAccountConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserProvAccountSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvAccountsConnection """ Collection of Salesforce User List Views """ - userListViews(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserListViewConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserListViewSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User List Views to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserListViewsConnection + userListViews( + filter: SalesforceUserListViewConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserListViewSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserListViewsConnection """ Collection of Salesforce Apex Email Notifications """ - apexEmailNotifications(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexEmailNotificationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexEmailNotificationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Apex Email Notifications to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexEmailNotificationsConnection + apexEmailNotifications( + filter: SalesforceApexEmailNotificationConnectionFilter + sortByCustomField: String + sortByField: SalesforceApexEmailNotificationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexEmailNotificationsConnection """ Collection of Salesforce Category Nodes """ - categoryNodes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCategoryNodeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCategoryNodeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Category Nodes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCategoryNodesConnection + categoryNodes( + filter: SalesforceCategoryNodeConnectionFilter + sortByCustomField: String + sortByField: SalesforceCategoryNodeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCategoryNodesConnection """ Collection of Salesforce Entity Subscriptions """ - entitySubscriptions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Entity Subscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + entitySubscriptions( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: String + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Partners """ - partners(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Partners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePartnersConnection + partners( + filter: SalesforcePartnerConnectionFilter + sortByCustomField: String + sortByField: SalesforcePartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePartnersConnection """ Collection of Salesforce Chatter Invitations """ - collaborationInvitations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationInvitationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Chatter Invitations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationInvitationsConnection + collaborationInvitations( + filter: SalesforceCollaborationInvitationConnectionFilter + sortByCustomField: String + sortByField: SalesforceCollaborationInvitationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationInvitationsConnection """ Collection of Salesforce Additional Directory Numbers """ - additionalNumbers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAdditionalNumberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAdditionalNumberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Additional Directory Numbers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAdditionalNumbersConnection + additionalNumbers( + filter: SalesforceAdditionalNumberConnectionFilter + sortByCustomField: String + sortByField: SalesforceAdditionalNumberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAdditionalNumbersConnection """ Collection of Salesforce Flow Record Relations """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Flow Record Relations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: String + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Opportunity Products """ - opportunityLineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityLineItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Opportunity Products to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityLineItemsConnection + opportunityLineItems( + filter: SalesforceOpportunityLineItemConnectionFilter + sortByCustomField: String + sortByField: SalesforceOpportunityLineItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityLineItemsConnection """ Collection of Salesforce Task Feeds """ - taskFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Task Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTaskFeedsConnection + taskFeeds( + filter: SalesforceTaskFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceTaskFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTaskFeedsConnection """ Collection of Salesforce Organizations """ - organizations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrganizationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrganizationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Organizations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrganizationsConnection + organizations( + filter: SalesforceOrganizationConnectionFilter + sortByCustomField: String + sortByField: SalesforceOrganizationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrganizationsConnection """ Collection of Salesforce Goals """ - todayGoals(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTodayGoalConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTodayGoalSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Goals to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTodayGoalsConnection + todayGoals( + filter: SalesforceTodayGoalConnectionFilter + sortByCustomField: String + sortByField: SalesforceTodayGoalSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTodayGoalsConnection """ Collection of Salesforce Named Credentials """ - namedCredentials(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNamedCredentialConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNamedCredentialSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Named Credentials to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceNamedCredentialsConnection + namedCredentials( + filter: SalesforceNamedCredentialConnectionFilter + sortByCustomField: String + sortByField: SalesforceNamedCredentialSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceNamedCredentialsConnection """ Collection of Salesforce List Email Recipient Sources """ - listEmailRecipientSources(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailRecipientSourceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of List Email Recipient Sources to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceListEmailRecipientSourcesConnection + listEmailRecipientSources( + filter: SalesforceListEmailRecipientSourceConnectionFilter + sortByCustomField: String + sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceListEmailRecipientSourcesConnection """ Collection of Salesforce Contact Histories """ - contactHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contact Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactHistorysConnection + contactHistories( + filter: SalesforceContactHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceContactHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactHistorysConnection """ Collection of Salesforce Content Document Subscriptions """ - contentDocumentSubscriptions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentSubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Document Subscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentSubscriptionsConnection + contentDocumentSubscriptions( + filter: SalesforceContentDocumentSubscriptionConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentSubscriptionsConnection """ Collection of Salesforce Opportunities """ - opportunities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Opportunities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunitysConnection + opportunities( + filter: SalesforceOpportunityConnectionFilter + sortByCustomField: String + sortByField: SalesforceOpportunitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunitysConnection """ Collection of Salesforce Groups """ - collaborationGroups(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Groups to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupsConnection + collaborationGroups( + filter: SalesforceCollaborationGroupConnectionFilter + sortByCustomField: String + sortByField: SalesforceCollaborationGroupSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupsConnection """ Collection of Salesforce Ideas """ - ideas(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Ideas to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceIdeasConnection + ideas( + filter: SalesforceIdeaConnectionFilter + sortByCustomField: String + sortByField: SalesforceIdeaSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceIdeasConnection """ Collection of Salesforce Content Version Histories """ - contentVersionHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Version Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionHistorysConnection + contentVersionHistories( + filter: SalesforceContentVersionHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentVersionHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionHistorysConnection """ Collection of Salesforce Report Feeds """ - reportFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Report Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceReportFeedsConnection + reportFeeds( + filter: SalesforceReportFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceReportFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceReportFeedsConnection """ Collection of Salesforce Data Assessment Field Value Metrics """ - dataAssessmentValueMetrics(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentValueMetricConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Data Assessment Field Value Metrics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDataAssessmentValueMetricsConnection + dataAssessmentValueMetrics( + filter: SalesforceDataAssessmentValueMetricConnectionFilter + sortByCustomField: String + sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDataAssessmentValueMetricsConnection """ Collection of Salesforce Custom Brands """ - customBrands(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Custom Brands to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomBrandsConnection + customBrands( + filter: SalesforceCustomBrandConnectionFilter + sortByCustomField: String + sortByField: SalesforceCustomBrandSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomBrandsConnection """ Collection of Salesforce Notes """ - notes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Notes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceNotesConnection + notes( + filter: SalesforceNoteConnectionFilter + sortByCustomField: String + sortByField: SalesforceNoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceNotesConnection """ Collection of Salesforce Assignment Rules """ - assignmentRules(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssignmentRuleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssignmentRuleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Assignment Rules to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssignmentRulesConnection + assignmentRules( + filter: SalesforceAssignmentRuleConnectionFilter + sortByCustomField: String + sortByField: SalesforceAssignmentRuleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssignmentRulesConnection """ Collection of Salesforce Contract Contact Roles """ - contractContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contract Contact Roles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractContactRolesConnection + contractContactRoles( + filter: SalesforceContractContactRoleConnectionFilter + sortByCustomField: String + sortByField: SalesforceContractContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractContactRolesConnection """ Collection of Salesforce Votes """ - votes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Votes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceVotesConnection + votes( + filter: SalesforceVoteConnectionFilter + sortByCustomField: String + sortByField: SalesforceVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceVotesConnection """ Collection of Salesforce Site Histories """ - siteHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Site Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSiteHistorysConnection + siteHistories( + filter: SalesforceSiteHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceSiteHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSiteHistorysConnection """ Collection of Salesforce Solutions """ - solutions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Solutions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSolutionsConnection + solutions( + filter: SalesforceSolutionConnectionFilter + sortByCustomField: String + sortByField: SalesforceSolutionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSolutionsConnection """ Collection of Salesforce Business Processes """ - businessProcesses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBusinessProcessConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBusinessProcessSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Business Processes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceBusinessProcesssConnection + businessProcesses( + filter: SalesforceBusinessProcessConnectionFilter + sortByCustomField: String + sortByField: SalesforceBusinessProcessSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceBusinessProcesssConnection """ Collection of Salesforce User Provisioning Account Stagings """ - userProvAccountStagings(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvAccountStagingConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvAccountStagingSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User Provisioning Account Stagings to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvAccountStagingsConnection + userProvAccountStagings( + filter: SalesforceUserProvAccountStagingConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserProvAccountStagingSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvAccountStagingsConnection """ Collection of Salesforce Flow Interview Shares """ - flowInterviewShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowInterviewShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowInterviewShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Flow Interview Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowInterviewSharesConnection + flowInterviewShares( + filter: SalesforceFlowInterviewShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceFlowInterviewShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowInterviewSharesConnection """ Collection of Salesforce Org Delete Request Shares """ - orgDeleteRequestShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrgDeleteRequestShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Org Delete Request Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrgDeleteRequestSharesConnection + orgDeleteRequestShares( + filter: SalesforceOrgDeleteRequestShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrgDeleteRequestSharesConnection """ Collection of Salesforce Apex Test Results """ - apexTestResults(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Apex Test Results to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestResultsConnection + apexTestResults( + filter: SalesforceApexTestResultConnectionFilter + sortByCustomField: String + sortByField: SalesforceApexTestResultSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestResultsConnection """ Collection of Salesforce Folders """ - folders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFolderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFolderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Folders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFoldersConnection + folders( + filter: SalesforceFolderConnectionFilter + sortByCustomField: String + sortByField: SalesforceFolderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFoldersConnection """ Collection of Salesforce Quick Text Shares """ - quickTextShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Quick Text Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceQuickTextSharesConnection + quickTextShares( + filter: SalesforceQuickTextShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceQuickTextShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceQuickTextSharesConnection """ Collection of Salesforce Authentication Configuration Auth. Providers """ - authConfigProvidersPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthConfigProvidersConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Authentication Configuration Auth. Providers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthConfigProviderssConnection + authConfigProvidersPlural( + filter: SalesforceAuthConfigProvidersConnectionFilter + sortByCustomField: String + sortByField: SalesforceAuthConfigProvidersSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthConfigProviderssConnection """ Collection of Salesforce Products """ - product2s(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2ConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2SortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Products to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProduct2sConnection + product2s( + filter: SalesforceProduct2ConnectionFilter + sortByCustomField: String + sortByField: SalesforceProduct2SortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProduct2sConnection """ Collection of Salesforce Accepted Event Relations """ - acceptedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAcceptedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Accepted Event Relations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAcceptedEventRelationsConnection + acceptedEventRelations( + filter: SalesforceAcceptedEventRelationConnectionFilter + sortByCustomField: String + sortByField: SalesforceAcceptedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAcceptedEventRelationsConnection """ Collection of Salesforce Session Permission Set Activations """ - sessionPermSetActivations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSessionPermSetActivationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Session Permission Set Activations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSessionPermSetActivationsConnection + sessionPermSetActivations( + filter: SalesforceSessionPermSetActivationConnectionFilter + sortByCustomField: String + sortByField: SalesforceSessionPermSetActivationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSessionPermSetActivationsConnection """ Collection of Salesforce Zones """ - communities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCommunityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCommunitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Zones to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCommunitysConnection + communities( + filter: SalesforceCommunityConnectionFilter + sortByCustomField: String + sortByField: SalesforceCommunitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCommunitysConnection """ Collection of Salesforce Lead Status Values """ - leadStatuses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadStatusConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadStatusSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Lead Status Values to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadStatussConnection + leadStatuses( + filter: SalesforceLeadStatusConnectionFilter + sortByCustomField: String + sortByField: SalesforceLeadStatusSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadStatussConnection """ Collection of Salesforce Email Services """ - emailServicesFunctions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailServicesFunctionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailServicesFunctionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Email Services to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailServicesFunctionsConnection + emailServicesFunctions( + filter: SalesforceEmailServicesFunctionConnectionFilter + sortByCustomField: String + sortByField: SalesforceEmailServicesFunctionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailServicesFunctionsConnection """ Collection of Salesforce Matching Rules """ - matchingRules(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMatchingRuleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMatchingRuleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Matching Rules to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMatchingRulesConnection + matchingRules( + filter: SalesforceMatchingRuleConnectionFilter + sortByCustomField: String + sortByField: SalesforceMatchingRuleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMatchingRulesConnection """ Collection of Salesforce Organization-wide From Email Addresses """ - orgWideEmailAddresses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrgWideEmailAddressConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrgWideEmailAddressSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Organization-wide From Email Addresses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrgWideEmailAddresssConnection + orgWideEmailAddresses( + filter: SalesforceOrgWideEmailAddressConnectionFilter + sortByCustomField: String + sortByField: SalesforceOrgWideEmailAddressSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrgWideEmailAddresssConnection """ Collection of Salesforce Email Message Relations """ - emailMessageRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Email Message Relations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessageRelationsConnection + emailMessageRelations( + filter: SalesforceEmailMessageRelationConnectionFilter + sortByCustomField: String + sortByField: SalesforceEmailMessageRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessageRelationsConnection """ Collection of Salesforce Knowledgeable Users """ - knowledgeableUsers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceKnowledgeableUserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceKnowledgeableUserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Knowledgeable Users to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceKnowledgeableUsersConnection + knowledgeableUsers( + filter: SalesforceKnowledgeableUserConnectionFilter + sortByCustomField: String + sortByField: SalesforceKnowledgeableUserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceKnowledgeableUsersConnection """ Collection of Salesforce Setup Audit Trail Entries """ - setupAuditTrails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupAuditTrailConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupAuditTrailSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Setup Audit Trail Entries to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSetupAuditTrailsConnection + setupAuditTrails( + filter: SalesforceSetupAuditTrailConnectionFilter + sortByCustomField: String + sortByField: SalesforceSetupAuditTrailSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSetupAuditTrailsConnection """ Collection of Salesforce Scheduled Jobs """ - cronTriggers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCronTriggerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCronTriggerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Scheduled Jobs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCronTriggersConnection + cronTriggers( + filter: SalesforceCronTriggerConnectionFilter + sortByCustomField: String + sortByField: SalesforceCronTriggerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCronTriggersConnection """ Collection of Salesforce Setting Granted By Licenses """ - grantedByLicenses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGrantedByLicenseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Setting Granted By Licenses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceGrantedByLicensesConnection + grantedByLicenses( + filter: SalesforceGrantedByLicenseConnectionFilter + sortByCustomField: String + sortByField: SalesforceGrantedByLicenseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceGrantedByLicensesConnection """ Collection of Salesforce Content Security Policy Trusted Sites """ - cspTrustedSites(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCspTrustedSiteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCspTrustedSiteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Security Policy Trusted Sites to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCspTrustedSitesConnection + cspTrustedSites( + filter: SalesforceCspTrustedSiteConnectionFilter + sortByCustomField: String + sortByField: SalesforceCspTrustedSiteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCspTrustedSitesConnection """ Collection of Salesforce Solution Histories """ - solutionHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Solution Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSolutionHistorysConnection + solutionHistories( + filter: SalesforceSolutionHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceSolutionHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSolutionHistorysConnection """ Collection of Salesforce Content Tag Subscriptions """ - contentTagSubscriptions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentTagSubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentTagSubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Tag Subscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentTagSubscriptionsConnection + contentTagSubscriptions( + filter: SalesforceContentTagSubscriptionConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentTagSubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentTagSubscriptionsConnection """ Collection of Salesforce Contracts """ - contracts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contracts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractsConnection + contracts( + filter: SalesforceContractConnectionFilter + sortByCustomField: String + sortByField: SalesforceContractSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractsConnection """ Collection of Salesforce Document Entity Maps """ - documentAttachmentMaps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDocumentAttachmentMapConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Document Entity Maps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDocumentAttachmentMapsConnection + documentAttachmentMaps( + filter: SalesforceDocumentAttachmentMapConnectionFilter + sortByCustomField: String + sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDocumentAttachmentMapsConnection """ Collection of Salesforce Macro Instructions """ - macroInstructions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroInstructionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroInstructionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Macro Instructions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMacroInstructionsConnection + macroInstructions( + filter: SalesforceMacroInstructionConnectionFilter + sortByCustomField: String + sortByField: SalesforceMacroInstructionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMacroInstructionsConnection """ Collection of Salesforce Custom Permissions """ - customPermissions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomPermissionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomPermissionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Custom Permissions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomPermissionsConnection + customPermissions( + filter: SalesforceCustomPermissionConnectionFilter + sortByCustomField: String + sortByField: SalesforceCustomPermissionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomPermissionsConnection """ Collection of Salesforce Contract Feeds """ - contractFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contract Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractFeedsConnection + contractFeeds( + filter: SalesforceContractFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceContractFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractFeedsConnection """ Collection of Salesforce Library Permissions """ - contentWorkspacePermissions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspacePermissionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspacePermissionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Library Permissions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspacePermissionsConnection + contentWorkspacePermissions( + filter: SalesforceContentWorkspacePermissionConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentWorkspacePermissionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspacePermissionsConnection """ Collection of Salesforce Business Hours """ - businessHoursPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBusinessHoursConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBusinessHoursSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Business Hours to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceBusinessHourssConnection + businessHoursPlural( + filter: SalesforceBusinessHoursConnectionFilter + sortByCustomField: String + sortByField: SalesforceBusinessHoursSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceBusinessHourssConnection """ Collection of Salesforce Macro Histories """ - macroHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Macro Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMacroHistorysConnection + macroHistories( + filter: SalesforceMacroHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceMacroHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMacroHistorysConnection """ Collection of Salesforce Users """ - users(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Users to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUsersConnection + users( + filter: SalesforceUserConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUsersConnection """ Collection of Salesforce Dashboards """ - dashboards(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Dashboards to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDashboardsConnection + dashboards( + filter: SalesforceDashboardConnectionFilter + sortByCustomField: String + sortByField: SalesforceDashboardSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDashboardsConnection """ Collection of Salesforce Content Notifications """ - contentNotifications(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentNotificationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentNotificationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Notifications to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentNotificationsConnection + contentNotifications( + filter: SalesforceContentNotificationConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentNotificationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentNotificationsConnection """ Collection of Salesforce Case Contact Roles """ - caseContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Case Contact Roles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseContactRolesConnection + caseContactRoles( + filter: SalesforceCaseContactRoleConnectionFilter + sortByCustomField: String + sortByField: SalesforceCaseContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseContactRolesConnection """ Collection of Salesforce Test Suite Memberships """ - testSuiteMemberships(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTestSuiteMembershipConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Test Suite Memberships to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTestSuiteMembershipsConnection + testSuiteMemberships( + filter: SalesforceTestSuiteMembershipConnectionFilter + sortByCustomField: String + sortByField: SalesforceTestSuiteMembershipSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTestSuiteMembershipsConnection """ Collection of Salesforce Order Shares """ - orderShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Order Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderSharesConnection + orderShares( + filter: SalesforceOrderShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceOrderShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderSharesConnection """ Collection of Salesforce UserAppMenuCustomizations """ - userAppMenuCustomizations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppMenuCustomizationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserAppMenuCustomizations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserAppMenuCustomizationsConnection + userAppMenuCustomizations( + filter: SalesforceUserAppMenuCustomizationConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserAppMenuCustomizationsConnection """ Collection of Salesforce Topic User Events """ - topicUserEvents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicUserEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicUserEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Topic User Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicUserEventsConnection + topicUserEvents( + filter: SalesforceTopicUserEventConnectionFilter + sortByCustomField: String + sortByField: SalesforceTopicUserEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicUserEventsConnection """ Collection of Salesforce Announcements """ - announcements(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAnnouncementConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAnnouncementSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Announcements to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAnnouncementsConnection + announcements( + filter: SalesforceAnnouncementConnectionFilter + sortByCustomField: String + sortByField: SalesforceAnnouncementSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAnnouncementsConnection """ Collection of Salesforce External Data User Authentications """ - externalDataUserAuths(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataUserAuthConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of External Data User Authentications to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceExternalDataUserAuthsConnection + externalDataUserAuths( + filter: SalesforceExternalDataUserAuthConnectionFilter + sortByCustomField: String + sortByField: SalesforceExternalDataUserAuthSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceExternalDataUserAuthsConnection """ Collection of Salesforce Promoted Search Terms """ - searchPromotionRules(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSearchPromotionRuleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSearchPromotionRuleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Promoted Search Terms to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSearchPromotionRulesConnection + searchPromotionRules( + filter: SalesforceSearchPromotionRuleConnectionFilter + sortByCustomField: String + sortByField: SalesforceSearchPromotionRuleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSearchPromotionRulesConnection """ Collection of Salesforce Lead Clean Infos """ - leadCleanInfos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadCleanInfoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Lead Clean Infos to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadCleanInfosConnection + leadCleanInfos( + filter: SalesforceLeadCleanInfoConnectionFilter + sortByCustomField: String + sortByField: SalesforceLeadCleanInfoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadCleanInfosConnection """ Collection of Salesforce Events """ - events(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + events( + filter: SalesforceEventConnectionFilter + sortByCustomField: String + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce Process Definitions """ - processDefinitions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessDefinitionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessDefinitionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Process Definitions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessDefinitionsConnection + processDefinitions( + filter: SalesforceProcessDefinitionConnectionFilter + sortByCustomField: String + sortByField: SalesforceProcessDefinitionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessDefinitionsConnection """ Collection of Salesforce Permission Set Licenses """ - permissionSetLicenses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetLicenseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetLicenseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Permission Set Licenses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePermissionSetLicensesConnection + permissionSetLicenses( + filter: SalesforcePermissionSetLicenseConnectionFilter + sortByCustomField: String + sortByField: SalesforcePermissionSetLicenseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePermissionSetLicensesConnection """ Collection of Salesforce Campaign Member Statuses """ - campaignMemberStatuses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberStatusConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberStatusSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Campaign Member Statuses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignMemberStatussConnection + campaignMemberStatuses( + filter: SalesforceCampaignMemberStatusConnectionFilter + sortByCustomField: String + sortByField: SalesforceCampaignMemberStatusSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignMemberStatussConnection """ Collection of Salesforce Content Versions """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Versions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce Security Custom Baselines """ - securityCustomBaselines(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecurityCustomBaselineConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecurityCustomBaselineSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Security Custom Baselines to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSecurityCustomBaselinesConnection + securityCustomBaselines( + filter: SalesforceSecurityCustomBaselineConnectionFilter + sortByCustomField: String + sortByField: SalesforceSecurityCustomBaselineSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSecurityCustomBaselinesConnection """ Collection of Salesforce Data Assessment Field Metrics """ - dataAssessmentFieldMetrics(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentFieldMetricConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Data Assessment Field Metrics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDataAssessmentFieldMetricsConnection + dataAssessmentFieldMetrics( + filter: SalesforceDataAssessmentFieldMetricConnectionFilter + sortByCustomField: String + sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDataAssessmentFieldMetricsConnection """ Collection of Salesforce Lightning Component Definitions """ - auraDefinitions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuraDefinitionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuraDefinitionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Lightning Component Definitions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuraDefinitionsConnection + auraDefinitions( + filter: SalesforceAuraDefinitionConnectionFilter + sortByCustomField: String + sortByField: SalesforceAuraDefinitionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuraDefinitionsConnection """ Collection of Salesforce Data.com Usages """ - datacloudPurchaseUsages(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDatacloudPurchaseUsageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDatacloudPurchaseUsageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Data.com Usages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDatacloudPurchaseUsagesConnection + datacloudPurchaseUsages( + filter: SalesforceDatacloudPurchaseUsageConnectionFilter + sortByCustomField: String + sortByField: SalesforceDatacloudPurchaseUsageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDatacloudPurchaseUsagesConnection """ Collection of Salesforce Contacts """ - contacts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contacts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactsConnection + contacts( + filter: SalesforceContactConnectionFilter + sortByCustomField: String + sortByField: SalesforceContactSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactsConnection """ Collection of Salesforce Content Documents """ - contentDocuments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Documents to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentsConnection + contentDocuments( + filter: SalesforceContentDocumentConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentDocumentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentsConnection """ Collection of Salesforce Lead Histories """ - leadHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Lead Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadHistorysConnection + leadHistories( + filter: SalesforceLeadHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceLeadHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadHistorysConnection """ Collection of Salesforce Email Templates """ - emailTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Email Templates to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailTemplatesConnection + emailTemplates( + filter: SalesforceEmailTemplateConnectionFilter + sortByCustomField: String + sortByField: SalesforceEmailTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailTemplatesConnection """ Collection of Salesforce Content Version Ratings """ - contentVersionRatings(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionRatingConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionRatingSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Version Ratings to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionRatingsConnection + contentVersionRatings( + filter: SalesforceContentVersionRatingConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentVersionRatingSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionRatingsConnection """ Collection of Salesforce Quick Text Histories """ - quickTextHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Quick Text Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceQuickTextHistorysConnection + quickTextHistories( + filter: SalesforceQuickTextHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceQuickTextHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceQuickTextHistorysConnection """ Collection of Salesforce Authentication Configurations """ - authConfigs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthConfigConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthConfigSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Authentication Configurations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthConfigsConnection + authConfigs( + filter: SalesforceAuthConfigConnectionFilter + sortByCustomField: String + sortByField: SalesforceAuthConfigSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthConfigsConnection """ Collection of Salesforce Topics """ - topics(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Topics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicsConnection + topics( + filter: SalesforceTopicConnectionFilter + sortByCustomField: String + sortByField: SalesforceTopicSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicsConnection """ Collection of Salesforce Task Priority Values """ - taskPriorities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskPriorityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskPrioritySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Task Priority Values to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTaskPrioritysConnection + taskPriorities( + filter: SalesforceTaskPriorityConnectionFilter + sortByCustomField: String + sortByField: SalesforceTaskPrioritySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTaskPrioritysConnection """ Collection of Salesforce Apex Test Suites """ - apexTestSuites(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestSuiteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestSuiteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Apex Test Suites to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestSuitesConnection + apexTestSuites( + filter: SalesforceApexTestSuiteConnectionFilter + sortByCustomField: String + sortByField: SalesforceApexTestSuiteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestSuitesConnection """ Collection of Salesforce Reports """ - reports(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Reports to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceReportsConnection + reports( + filter: SalesforceReportConnectionFilter + sortByCustomField: String + sortByField: SalesforceReportSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceReportsConnection """ Collection of Salesforce Visualforce Access Metrics """ - visualforceAccessMetricsPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVisualforceAccessMetricsConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVisualforceAccessMetricsSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Visualforce Access Metrics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceVisualforceAccessMetricssConnection + visualforceAccessMetricsPlural( + filter: SalesforceVisualforceAccessMetricsConnectionFilter + sortByCustomField: String + sortByField: SalesforceVisualforceAccessMetricsSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceVisualforceAccessMetricssConnection """ Collection of Salesforce Auth Sessions """ - authSessions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthSessionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthSessionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Auth Sessions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthSessionsConnection + authSessions( + filter: SalesforceAuthSessionConnectionFilter + sortByCustomField: String + sortByField: SalesforceAuthSessionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthSessionsConnection """ Collection of Salesforce Library Members """ - contentWorkspaceMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Library Members to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspaceMembersConnection + contentWorkspaceMembers( + filter: SalesforceContentWorkspaceMemberConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspaceMembersConnection """ Collection of Salesforce Queue Sobjects """ - queueSobjects(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQueueSobjectConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQueueSobjectSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Queue Sobjects to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceQueueSobjectsConnection + queueSobjects( + filter: SalesforceQueueSobjectConnectionFilter + sortByCustomField: String + sortByField: SalesforceQueueSobjectSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceQueueSobjectsConnection """ Collection of Salesforce Identity Verification Histories """ - verificationHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVerificationHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVerificationHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Identity Verification Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceVerificationHistorysConnection + verificationHistories( + filter: SalesforceVerificationHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceVerificationHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceVerificationHistorysConnection """ Collection of Salesforce Domains """ - domains(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDomainConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDomainSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Domains to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDomainsConnection + domains( + filter: SalesforceDomainConnectionFilter + sortByCustomField: String + sortByField: SalesforceDomainSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDomainsConnection """ Collection of Salesforce Connected Apps """ - connectedApplications(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceConnectedApplicationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceConnectedApplicationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Connected Apps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceConnectedApplicationsConnection + connectedApplications( + filter: SalesforceConnectedApplicationConnectionFilter + sortByCustomField: String + sortByField: SalesforceConnectedApplicationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceConnectedApplicationsConnection """ Collection of Salesforce Dashboard Components """ - dashboardComponents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardComponentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardComponentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Dashboard Components to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDashboardComponentsConnection + dashboardComponents( + filter: SalesforceDashboardComponentConnectionFilter + sortByCustomField: String + sortByField: SalesforceDashboardComponentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDashboardComponentsConnection """ Collection of Salesforce ContentDocument Feeds """ - contentDocumentFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocument Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentFeedsConnection + contentDocumentFeeds( + filter: SalesforceContentDocumentFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentDocumentFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentFeedsConnection """ Collection of Salesforce Libraries """ - contentWorkspaces(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Libraries to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspacesConnection + contentWorkspaces( + filter: SalesforceContentWorkspaceConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentWorkspaceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspacesConnection """ Collection of Salesforce Content Folder Members """ - contentFolderMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Folder Members to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentFolderMembersConnection + contentFolderMembers( + filter: SalesforceContentFolderMemberConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentFolderMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentFolderMembersConnection """ Collection of Salesforce Asset Relationship Histories """ - assetRelationshipHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Asset Relationship Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetRelationshipHistorysConnection + assetRelationshipHistories( + filter: SalesforceAssetRelationshipHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetRelationshipHistorysConnection """ Collection of Salesforce Call Centers """ - callCenters(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCallCenterConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCallCenterSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Call Centers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCallCentersConnection + callCenters( + filter: SalesforceCallCenterConnectionFilter + sortByCustomField: String + sortByField: SalesforceCallCenterSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCallCentersConnection """ Collection of Salesforce Case Team Members """ - caseTeamMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Case Team Members to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseTeamMembersConnection + caseTeamMembers( + filter: SalesforceCaseTeamMemberConnectionFilter + sortByCustomField: String + sortByField: SalesforceCaseTeamMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseTeamMembersConnection """ Collection of Salesforce Mail Merge Templates """ - mailmergeTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMailmergeTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMailmergeTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Mail Merge Templates to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMailmergeTemplatesConnection + mailmergeTemplates( + filter: SalesforceMailmergeTemplateConnectionFilter + sortByCustomField: String + sortByField: SalesforceMailmergeTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMailmergeTemplatesConnection """ Collection of Salesforce Custom Object Usage By User License Metrics """ - customObjectUserLicenseMetricsPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomObjectUserLicenseMetricsConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Custom Object Usage By User License Metrics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomObjectUserLicenseMetricssConnection + customObjectUserLicenseMetricsPlural( + filter: SalesforceCustomObjectUserLicenseMetricsConnectionFilter + sortByCustomField: String + sortByField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomObjectUserLicenseMetricssConnection """ Collection of Salesforce List Views """ - listViews(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListViewConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListViewSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of List Views to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceListViewsConnection + listViews( + filter: SalesforceListViewConnectionFilter + sortByCustomField: String + sortByField: SalesforceListViewSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceListViewsConnection """ Collection of Salesforce Org Delete Requests """ - orgDeleteRequests(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrgDeleteRequestConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrgDeleteRequestSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Org Delete Requests to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrgDeleteRequestsConnection + orgDeleteRequests( + filter: SalesforceOrgDeleteRequestConnectionFilter + sortByCustomField: String + sortByField: SalesforceOrgDeleteRequestSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrgDeleteRequestsConnection """ Collection of Salesforce Group Feeds """ - collaborationGroupFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Group Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupFeedsConnection + collaborationGroupFeeds( + filter: SalesforceCollaborationGroupFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupFeedsConnection """ Collection of Salesforce User Preferences """ - userPreferences(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserPreferenceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserPreferenceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User Preferences to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserPreferencesConnection + userPreferences( + filter: SalesforceUserPreferenceConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserPreferenceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserPreferencesConnection """ Collection of Salesforce Group Members """ - collaborationGroupMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Group Members to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupMembersConnection + collaborationGroupMembers( + filter: SalesforceCollaborationGroupMemberConnectionFilter + sortByCustomField: String + sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupMembersConnection """ Collection of Salesforce Opportunity Field Histories """ - opportunityFieldHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityFieldHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Opportunity Field Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityFieldHistorysConnection + opportunityFieldHistories( + filter: SalesforceOpportunityFieldHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityFieldHistorysConnection """ Collection of Salesforce Account Histories """ - accountHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Account Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountHistorysConnection + accountHistories( + filter: SalesforceAccountHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceAccountHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountHistorysConnection """ Collection of Salesforce SAML Single Sign-On Settings """ - samlSsoConfigs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSamlSsoConfigConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSamlSsoConfigSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SAML Single Sign-On Settings to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSamlSsoConfigsConnection + samlSsoConfigs( + filter: SalesforceSamlSsoConfigConnectionFilter + sortByCustomField: String + sortByField: SalesforceSamlSsoConfigSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSamlSsoConfigsConnection """ Collection of Salesforce Opportunity Shares """ - opportunityShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Opportunity Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunitySharesConnection + opportunityShares( + filter: SalesforceOpportunityShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceOpportunityShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunitySharesConnection """ Collection of Salesforce Event Log Files """ - eventLogFiles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventLogFileConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventLogFileSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Event Log Files to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventLogFilesConnection + eventLogFiles( + filter: SalesforceEventLogFileConnectionFilter + sortByCustomField: String + sortByField: SalesforceEventLogFileSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventLogFilesConnection """ Collection of Salesforce Asset Relationships """ - assetRelationships(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Asset Relationships to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetRelationshipsConnection + assetRelationships( + filter: SalesforceAssetRelationshipConnectionFilter + sortByCustomField: String + sortByField: SalesforceAssetRelationshipSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetRelationshipsConnection """ Collection of Salesforce Event Feeds """ - eventFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Event Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventFeedsConnection + eventFeeds( + filter: SalesforceEventFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceEventFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventFeedsConnection """ Collection of Salesforce Roles """ - userRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Roles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserRolesConnection + userRoles( + filter: SalesforceUserRoleConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserRolesConnection """ Collection of Salesforce Opportunity Contact Roles """ - opportunityContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Opportunity Contact Roles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityContactRolesConnection + opportunityContactRoles( + filter: SalesforceOpportunityContactRoleConnectionFilter + sortByCustomField: String + sortByField: SalesforceOpportunityContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityContactRolesConnection """ Collection of Salesforce Case Solutions """ - caseSolutions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseSolutionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSolutionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Case Solutions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseSolutionsConnection + caseSolutions( + filter: SalesforceCaseSolutionConnectionFilter + sortByCustomField: String + sortByField: SalesforceCaseSolutionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseSolutionsConnection """ Collection of Salesforce EmailCaptures """ - emailCaptures(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailCaptureConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailCaptureSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailCaptures to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailCapturesConnection + emailCaptures( + filter: SalesforceEmailCaptureConnectionFilter + sortByCustomField: String + sortByField: SalesforceEmailCaptureSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailCapturesConnection """ Collection of Salesforce Accounts """ - accounts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Accounts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountsConnection + accounts( + filter: SalesforceAccountConnectionFilter + sortByCustomField: String + sortByField: SalesforceAccountSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountsConnection """ Collection of Salesforce Profiles """ - profiles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProfileConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProfileSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Profiles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProfilesConnection + profiles( + filter: SalesforceProfileConnectionFilter + sortByCustomField: String + sortByField: SalesforceProfileSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProfilesConnection """ Collection of Salesforce Opportunity Stages """ - opportunityStages(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityStageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityStageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Opportunity Stages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityStagesConnection + opportunityStages( + filter: SalesforceOpportunityStageConnectionFilter + sortByCustomField: String + sortByField: SalesforceOpportunityStageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityStagesConnection """ Collection of Salesforce Content Folder Items """ - contentFolderItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Folder Items to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentFolderItemsConnection + contentFolderItems( + filter: SalesforceContentFolderItemConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentFolderItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentFolderItemsConnection """ Collection of Salesforce Action Link Templates """ - actionLinkTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceActionLinkTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceActionLinkTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Action Link Templates to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceActionLinkTemplatesConnection + actionLinkTemplates( + filter: SalesforceActionLinkTemplateConnectionFilter + sortByCustomField: String + sortByField: SalesforceActionLinkTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceActionLinkTemplatesConnection """ Collection of Salesforce Permission Sets """ - permissionSets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Permission Sets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePermissionSetsConnection + permissionSets( + filter: SalesforcePermissionSetConnectionFilter + sortByCustomField: String + sortByField: SalesforcePermissionSetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePermissionSetsConnection """ Collection of Salesforce Asset Relationship Feeds """ - assetRelationshipFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Asset Relationship Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetRelationshipFeedsConnection + assetRelationshipFeeds( + filter: SalesforceAssetRelationshipFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetRelationshipFeedsConnection """ Collection of Salesforce Campaign Members """ - campaignMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Campaign Members to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignMembersConnection + campaignMembers( + filter: SalesforceCampaignMemberConnectionFilter + sortByCustomField: String + sortByField: SalesforceCampaignMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignMembersConnection """ Collection of Salesforce Product Histories """ - product2Histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2HistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2HistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Product Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProduct2HistorysConnection + product2Histories( + filter: SalesforceProduct2HistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceProduct2HistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProduct2HistorysConnection """ Collection of Salesforce Contact Shares """ - contactShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contact Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactSharesConnection + contactShares( + filter: SalesforceContactShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceContactShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactSharesConnection """ Collection of Salesforce Asset Shares """ - assetShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Asset Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetSharesConnection + assetShares( + filter: SalesforceAssetShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceAssetShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetSharesConnection """ Collection of Salesforce Account Clean Infos """ - accountCleanInfos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountCleanInfoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Account Clean Infos to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountCleanInfosConnection + accountCleanInfos( + filter: SalesforceAccountCleanInfoConnectionFilter + sortByCustomField: String + sortByField: SalesforceAccountCleanInfoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountCleanInfosConnection """ Collection of Salesforce Package Licenses """ - packageLicenses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePackageLicenseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePackageLicenseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Package Licenses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePackageLicensesConnection + packageLicenses( + filter: SalesforcePackageLicenseConnectionFilter + sortByCustomField: String + sortByField: SalesforcePackageLicenseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePackageLicensesConnection """ Collection of Salesforce User Shares """ - userShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserSharesConnection + userShares( + filter: SalesforceUserShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserSharesConnection """ Collection of Salesforce Permission Set License Assignments """ - permissionSetLicenseAssigns(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Permission Set License Assignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePermissionSetLicenseAssignsConnection + permissionSetLicenseAssigns( + filter: SalesforcePermissionSetLicenseAssignConnectionFilter + sortByCustomField: String + sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePermissionSetLicenseAssignsConnection """ Collection of Salesforce User Provisioning Requests """ - userProvisioningRequests(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User Provisioning Requests to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningRequestsConnection + userProvisioningRequests( + filter: SalesforceUserProvisioningRequestConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserProvisioningRequestSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningRequestsConnection """ Collection of Salesforce User Package Licenses """ - userPackageLicenses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserPackageLicenseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserPackageLicenseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User Package Licenses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserPackageLicensesConnection + userPackageLicenses( + filter: SalesforceUserPackageLicenseConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserPackageLicenseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserPackageLicensesConnection """ Collection of Salesforce FileSearchActivities """ - fileSearchActivities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFileSearchActivityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFileSearchActivitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FileSearchActivities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFileSearchActivitysConnection + fileSearchActivities( + filter: SalesforceFileSearchActivityConnectionFilter + sortByCustomField: String + sortByField: SalesforceFileSearchActivitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFileSearchActivitysConnection """ Collection of Salesforce Case Feeds """ - caseFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Case Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseFeedsConnection + caseFeeds( + filter: SalesforceCaseFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceCaseFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseFeedsConnection """ Collection of Salesforce Partner Role Values """ - partnerRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Partner Role Values to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePartnerRolesConnection + partnerRoles( + filter: SalesforcePartnerRoleConnectionFilter + sortByCustomField: String + sortByField: SalesforcePartnerRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePartnerRolesConnection """ Collection of Salesforce Asset Feeds """ - assetFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Asset Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetFeedsConnection + assetFeeds( + filter: SalesforceAssetFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceAssetFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetFeedsConnection """ Collection of Salesforce Client Browsers """ - clientBrowsers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceClientBrowserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceClientBrowserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Client Browsers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceClientBrowsersConnection + clientBrowsers( + filter: SalesforceClientBrowserConnectionFilter + sortByCustomField: String + sortByField: SalesforceClientBrowserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceClientBrowsersConnection """ Collection of Salesforce Account Contact Roles """ - accountContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Account Contact Roles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountContactRolesConnection + accountContactRoles( + filter: SalesforceAccountContactRoleConnectionFilter + sortByCustomField: String + sortByField: SalesforceAccountContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountContactRolesConnection """ Collection of Salesforce List Emails """ - listEmails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of List Emails to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceListEmailsConnection + listEmails( + filter: SalesforceListEmailConnectionFilter + sortByCustomField: String + sortByField: SalesforceListEmailSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceListEmailsConnection """ Collection of Salesforce Record Types """ - recordTypes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceRecordTypeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceRecordTypeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Record Types to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceRecordTypesConnection + recordTypes( + filter: SalesforceRecordTypeConnectionFilter + sortByCustomField: String + sortByField: SalesforceRecordTypeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceRecordTypesConnection """ Collection of Salesforce Topic Feeds """ - topicFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Topic Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicFeedsConnection + topicFeeds( + filter: SalesforceTopicFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceTopicFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicFeedsConnection """ Collection of Salesforce Content Workspace Subscriptions """ - contentWorkspaceSubscriptions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceSubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Workspace Subscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspaceSubscriptionsConnection + contentWorkspaceSubscriptions( + filter: SalesforceContentWorkspaceSubscriptionConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspaceSubscriptionsConnection """ Collection of Salesforce Case Team Member Roles """ - caseTeamRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Case Team Member Roles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseTeamRolesConnection + caseTeamRoles( + filter: SalesforceCaseTeamRoleConnectionFilter + sortByCustomField: String + sortByField: SalesforceCaseTeamRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseTeamRolesConnection """ Collection of Salesforce Feed Attachments """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Feed Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: String + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce Tenant Usage Entitlements """ - tenantUsageEntitlements(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTenantUsageEntitlementConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTenantUsageEntitlementSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tenant Usage Entitlements to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTenantUsageEntitlementsConnection + tenantUsageEntitlements( + filter: SalesforceTenantUsageEntitlementConnectionFilter + sortByCustomField: String + sortByField: SalesforceTenantUsageEntitlementSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTenantUsageEntitlementsConnection """ Collection of Salesforce Content Document Histories """ - contentDocumentHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Document Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentHistorysConnection + contentDocumentHistories( + filter: SalesforceContentDocumentHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentDocumentHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentHistorysConnection """ Collection of Salesforce Custom URLs """ - domainSites(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDomainSiteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDomainSiteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Custom URLs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDomainSitesConnection + domainSites( + filter: SalesforceDomainSiteConnectionFilter + sortByCustomField: String + sortByField: SalesforceDomainSiteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDomainSitesConnection """ Collection of Salesforce Price Book Entries """ - pricebookEntries(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebookEntryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebookEntrySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Price Book Entries to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePricebookEntrysConnection + pricebookEntries( + filter: SalesforcePricebookEntryConnectionFilter + sortByCustomField: String + sortByField: SalesforcePricebookEntrySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePricebookEntrysConnection """ Collection of Salesforce Chatter Extension Configurations """ - chatterExtensionConfigs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterExtensionConfigConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterExtensionConfigSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Chatter Extension Configurations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceChatterExtensionConfigsConnection + chatterExtensionConfigs( + filter: SalesforceChatterExtensionConfigConnectionFilter + sortByCustomField: String + sortByField: SalesforceChatterExtensionConfigSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceChatterExtensionConfigsConnection """ Collection of Salesforce Campaign Feeds """ - campaignFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Campaign Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignFeedsConnection + campaignFeeds( + filter: SalesforceCampaignFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceCampaignFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignFeedsConnection """ Collection of Salesforce List Email Shares """ - listEmailShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of List Email Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceListEmailSharesConnection + listEmailShares( + filter: SalesforceListEmailShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceListEmailShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceListEmailSharesConnection """ Collection of Salesforce Fiscal Year Settings """ - fiscalYearSettingsPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFiscalYearSettingsConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFiscalYearSettingsSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Fiscal Year Settings to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFiscalYearSettingssConnection + fiscalYearSettingsPlural( + filter: SalesforceFiscalYearSettingsConnectionFilter + sortByCustomField: String + sortByField: SalesforceFiscalYearSettingsSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFiscalYearSettingssConnection """ Collection of Salesforce Category Datas """ - categoryDatas(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCategoryDataConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCategoryDataSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Category Datas to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCategoryDatasConnection + categoryDatas( + filter: SalesforceCategoryDataConnectionFilter + sortByCustomField: String + sortByField: SalesforceCategoryDataSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCategoryDatasConnection """ Collection of Salesforce Content Deliveries """ - contentDistributions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Deliveries to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionsConnection + contentDistributions( + filter: SalesforceContentDistributionConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentDistributionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionsConnection """ Collection of Salesforce Account Partners """ - accountPartners(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountPartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountPartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Account Partners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountPartnersConnection + accountPartners( + filter: SalesforceAccountPartnerConnectionFilter + sortByCustomField: String + sortByField: SalesforceAccountPartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountPartnersConnection """ Collection of Salesforce Content Folders """ - contentFolders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Folders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentFoldersConnection + contentFolders( + filter: SalesforceContentFolderConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentFolderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentFoldersConnection """ Collection of Salesforce Goal Shares """ - todayGoalShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTodayGoalShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTodayGoalShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Goal Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTodayGoalSharesConnection + todayGoalShares( + filter: SalesforceTodayGoalShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceTodayGoalShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTodayGoalSharesConnection """ Collection of Salesforce Identity Provider Event Logs """ - idpEventLogs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdpEventLogConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdpEventLogSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Identity Provider Event Logs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceIdpEventLogsConnection + idpEventLogs( + filter: SalesforceIdpEventLogConnectionFilter + sortByCustomField: String + sortByField: SalesforceIdpEventLogSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceIdpEventLogsConnection """ Collection of Salesforce Flow Interviews """ - flowInterviews(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowInterviewConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowInterviewSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Flow Interviews to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowInterviewsConnection + flowInterviews( + filter: SalesforceFlowInterviewConnectionFilter + sortByCustomField: String + sortByField: SalesforceFlowInterviewSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowInterviewsConnection """ Collection of Salesforce Solution Status Values """ - solutionStatuses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionStatusConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionStatusSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Solution Status Values to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSolutionStatussConnection + solutionStatuses( + filter: SalesforceSolutionStatusConnectionFilter + sortByCustomField: String + sortByField: SalesforceSolutionStatusSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSolutionStatussConnection """ Collection of Salesforce Static Resources """ - staticResources(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStaticResourceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStaticResourceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Static Resources to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceStaticResourcesConnection + staticResources( + filter: SalesforceStaticResourceConnectionFilter + sortByCustomField: String + sortByField: SalesforceStaticResourceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceStaticResourcesConnection """ Collection of Salesforce Solution Feeds """ - solutionFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Solution Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSolutionFeedsConnection + solutionFeeds( + filter: SalesforceSolutionFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceSolutionFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSolutionFeedsConnection """ Collection of Salesforce Event Relations """ - eventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Event Relations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventRelationsConnection + eventRelations( + filter: SalesforceEventRelationConnectionFilter + sortByCustomField: String + sortByField: SalesforceEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventRelationsConnection """ Collection of Salesforce Cron Jobs """ - cronJobDetails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCronJobDetailConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCronJobDetailSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Cron Jobs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCronJobDetailsConnection + cronJobDetails( + filter: SalesforceCronJobDetailConnectionFilter + sortByCustomField: String + sortByField: SalesforceCronJobDetailSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCronJobDetailsConnection """ Collection of Salesforce Price Book Histories """ - pricebook2Histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebook2HistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebook2HistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Price Book Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePricebook2HistorysConnection + pricebook2Histories( + filter: SalesforcePricebook2HistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforcePricebook2HistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePricebook2HistorysConnection """ Collection of Salesforce Case Shares """ - caseShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Case Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseSharesConnection + caseShares( + filter: SalesforceCaseShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceCaseShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseSharesConnection """ Collection of Salesforce Custom Button or Links """ - webLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceWebLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceWebLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Custom Button or Links to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceWebLinksConnection + webLinks( + filter: SalesforceWebLinkConnectionFilter + sortByCustomField: String + sortByField: SalesforceWebLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceWebLinksConnection """ Collection of Salesforce Feed Poll Choices """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Feed Poll Choices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: String + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce Order Product Histories """ - orderItemHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Order Product Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderItemHistorysConnection + orderItemHistories( + filter: SalesforceOrderItemHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceOrderItemHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderItemHistorysConnection """ Collection of Salesforce Leads """ - leads(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Leads to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadsConnection + leads( + filter: SalesforceLeadConnectionFilter + sortByCustomField: String + sortByField: SalesforceLeadSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadsConnection """ Collection of Salesforce Feed Comments """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Feed Comments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: String + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce External Data Sources """ - externalDataSources(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataSourceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataSourceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of External Data Sources to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceExternalDataSourcesConnection + externalDataSources( + filter: SalesforceExternalDataSourceConnectionFilter + sortByCustomField: String + sortByField: SalesforceExternalDataSourceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceExternalDataSourcesConnection """ Collection of Salesforce Sites """ - sites(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Sites to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSitesConnection + sites( + filter: SalesforceSiteConnectionFilter + sortByCustomField: String + sortByField: SalesforceSiteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSitesConnection """ Collection of Salesforce Login IPs """ - loginIps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginIpConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginIpSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Login IPs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLoginIpsConnection + loginIps( + filter: SalesforceLoginIpConnectionFilter + sortByCustomField: String + sortByField: SalesforceLoginIpSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLoginIpsConnection """ Collection of Salesforce Installed Mobile Apps """ - installedMobileApps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceInstalledMobileAppConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceInstalledMobileAppSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Installed Mobile Apps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceInstalledMobileAppsConnection + installedMobileApps( + filter: SalesforceInstalledMobileAppConnectionFilter + sortByCustomField: String + sortByField: SalesforceInstalledMobileAppSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceInstalledMobileAppsConnection """ Collection of Salesforce Email Domain Keys """ - emailDomainKeys(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailDomainKeyConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailDomainKeySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Email Domain Keys to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailDomainKeysConnection + emailDomainKeys( + filter: SalesforceEmailDomainKeyConnectionFilter + sortByCustomField: String + sortByField: SalesforceEmailDomainKeySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailDomainKeysConnection """ Collection of Salesforce Chatter Activities """ - chatterActivities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterActivityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterActivitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Chatter Activities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceChatterActivitysConnection + chatterActivities( + filter: SalesforceChatterActivityConnectionFilter + sortByCustomField: String + sortByField: SalesforceChatterActivitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceChatterActivitysConnection """ Collection of Salesforce Case Histories """ - caseHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Case Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseHistorysConnection + caseHistories( + filter: SalesforceCaseHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceCaseHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseHistorysConnection """ Collection of Salesforce Login Histories """ - loginHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Login Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLoginHistorysConnection + loginHistories( + filter: SalesforceLoginHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceLoginHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLoginHistorysConnection """ Collection of Salesforce Price Books """ - pricebook2s(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebook2ConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebook2SortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Price Books to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePricebook2sConnection + pricebook2s( + filter: SalesforcePricebook2ConnectionFilter + sortByCustomField: String + sortByField: SalesforcePricebook2SortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePricebook2sConnection """ Collection of Salesforce User Provisioning Mock Targets """ - userProvMockTargets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvMockTargetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvMockTargetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User Provisioning Mock Targets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvMockTargetsConnection + userProvMockTargets( + filter: SalesforceUserProvMockTargetConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserProvMockTargetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvMockTargetsConnection """ Collection of Salesforce Process Nodes """ - processNodes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessNodeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessNodeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Process Nodes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessNodesConnection + processNodes( + filter: SalesforceProcessNodeConnectionFilter + sortByCustomField: String + sortByField: SalesforceProcessNodeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessNodesConnection """ Collection of Salesforce Order Product Feeds """ - orderItemFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Order Product Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderItemFeedsConnection + orderItemFeeds( + filter: SalesforceOrderItemFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceOrderItemFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderItemFeedsConnection """ Collection of Salesforce List View Charts """ - listViewCharts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListViewChartConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListViewChartSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of List View Charts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceListViewChartsConnection + listViewCharts( + filter: SalesforceListViewChartConnectionFilter + sortByCustomField: String + sortByField: SalesforceListViewChartSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceListViewChartsConnection """ Collection of Salesforce Object Permissions """ - objectPermissionsPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceObjectPermissionsConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceObjectPermissionsSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Object Permissions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceObjectPermissionssConnection + objectPermissionsPlural( + filter: SalesforceObjectPermissionsConnectionFilter + sortByCustomField: String + sortByField: SalesforceObjectPermissionsSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceObjectPermissionssConnection """ Collection of Salesforce Process Instance Steps """ - processInstanceSteps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceStepConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Process Instance Steps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstanceStepsConnection + processInstanceSteps( + filter: SalesforceProcessInstanceStepConnectionFilter + sortByCustomField: String + sortByField: SalesforceProcessInstanceStepSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstanceStepsConnection """ Collection of Salesforce Predefined Case Teams """ - caseTeamTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Predefined Case Teams to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseTeamTemplatesConnection + caseTeamTemplates( + filter: SalesforceCaseTeamTemplateConnectionFilter + sortByCustomField: String + sortByField: SalesforceCaseTeamTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseTeamTemplatesConnection """ Collection of Salesforce Apex Test Result Limits """ - apexTestResultLimitsPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultLimitsConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultLimitsSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Apex Test Result Limits to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestResultLimitssConnection + apexTestResultLimitsPlural( + filter: SalesforceApexTestResultLimitsConnectionFilter + sortByCustomField: String + sortByField: SalesforceApexTestResultLimitsSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestResultLimitssConnection """ Collection of Salesforce Predefined Case Team Members """ - caseTeamTemplateMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Predefined Case Team Members to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseTeamTemplateMembersConnection + caseTeamTemplateMembers( + filter: SalesforceCaseTeamTemplateMemberConnectionFilter + sortByCustomField: String + sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseTeamTemplateMembersConnection """ Collection of Salesforce Wave Compatibility Check Items """ - waveCompatibilityCheckItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceWaveCompatibilityCheckItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Wave Compatibility Check Items to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceWaveCompatibilityCheckItemsConnection + waveCompatibilityCheckItems( + filter: SalesforceWaveCompatibilityCheckItemConnectionFilter + sortByCustomField: String + sortByField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceWaveCompatibilityCheckItemsConnection """ Collection of Salesforce Group Members """ - groupMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGroupMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGroupMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Group Members to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceGroupMembersConnection + groupMembers( + filter: SalesforceGroupMemberConnectionFilter + sortByCustomField: String + sortByField: SalesforceGroupMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceGroupMembersConnection """ Collection of Salesforce Predefined Case Team Records """ - caseTeamTemplateRecords(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateRecordConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Predefined Case Team Records to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseTeamTemplateRecordsConnection + caseTeamTemplateRecords( + filter: SalesforceCaseTeamTemplateRecordConnectionFilter + sortByCustomField: String + sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseTeamTemplateRecordsConnection """ Collection of Salesforce Background Operations """ - backgroundOperations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBackgroundOperationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBackgroundOperationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Background Operations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceBackgroundOperationsConnection + backgroundOperations( + filter: SalesforceBackgroundOperationConnectionFilter + sortByCustomField: String + sortByField: SalesforceBackgroundOperationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceBackgroundOperationsConnection """ Collection of Salesforce Idea Comments """ - ideaComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Idea Comments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceIdeaCommentsConnection + ideaComments( + filter: SalesforceIdeaCommentConnectionFilter + sortByCustomField: String + sortByField: SalesforceIdeaCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceIdeaCommentsConnection """ Collection of Salesforce Opportunity: Competitors """ - opportunityCompetitors(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityCompetitorConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityCompetitorSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Opportunity: Competitors to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityCompetitorsConnection + opportunityCompetitors( + filter: SalesforceOpportunityCompetitorConnectionFilter + sortByCustomField: String + sortByField: SalesforceOpportunityCompetitorSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityCompetitorsConnection """ Collection of Salesforce Content Document Links """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Document Links to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce Chatter Extensions """ - chatterExtensions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterExtensionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterExtensionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Chatter Extensions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceChatterExtensionsConnection + chatterExtensions( + filter: SalesforceChatterExtensionConnectionFilter + sortByCustomField: String + sortByField: SalesforceChatterExtensionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceChatterExtensionsConnection """ Collection of Salesforce Order Histories """ - orderHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Order Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderHistorysConnection + orderHistories( + filter: SalesforceOrderHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceOrderHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderHistorysConnection """ Collection of Salesforce CORS Whitelist Origins """ - corsWhitelistEntries(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCorsWhitelistEntryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCorsWhitelistEntrySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CORS Whitelist Origins to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCorsWhitelistEntrysConnection + corsWhitelistEntries( + filter: SalesforceCorsWhitelistEntryConnectionFilter + sortByCustomField: String + sortByField: SalesforceCorsWhitelistEntrySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCorsWhitelistEntrysConnection """ Collection of Salesforce Feed Poll Votes """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Feed Poll Votes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: String + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection """ Collection of Salesforce Secure Agent Clusters """ - secureAgentsClusters(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentsClusterConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentsClusterSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Secure Agent Clusters to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSecureAgentsClustersConnection + secureAgentsClusters( + filter: SalesforceSecureAgentsClusterConnectionFilter + sortByCustomField: String + sortByField: SalesforceSecureAgentsClusterSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSecureAgentsClustersConnection """ Collection of Salesforce Quick Texts """ - quickTexts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Quick Texts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceQuickTextsConnection + quickTexts( + filter: SalesforceQuickTextConnectionFilter + sortByCustomField: String + sortByField: SalesforceQuickTextSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceQuickTextsConnection """ Collection of Salesforce Product Feeds """ - product2Feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2FeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2FeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Product Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProduct2FeedsConnection + product2Feeds( + filter: SalesforceProduct2FeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceProduct2FeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProduct2FeedsConnection """ Collection of Salesforce Contact Feeds """ - contactFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contact Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactFeedsConnection + contactFeeds( + filter: SalesforceContactFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceContactFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactFeedsConnection """ Collection of Salesforce Secure Agents """ - secureAgents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Secure Agents to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSecureAgentsConnection + secureAgents( + filter: SalesforceSecureAgentConnectionFilter + sortByCustomField: String + sortByField: SalesforceSecureAgentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSecureAgentsConnection """ Collection of Salesforce Lead Shares """ - leadShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Lead Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadSharesConnection + leadShares( + filter: SalesforceLeadShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceLeadShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadSharesConnection """ Collection of Salesforce Duplicate Record Sets """ - duplicateRecordSets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordSetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordSetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Duplicate Record Sets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDuplicateRecordSetsConnection + duplicateRecordSets( + filter: SalesforceDuplicateRecordSetConnectionFilter + sortByCustomField: String + sortByField: SalesforceDuplicateRecordSetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDuplicateRecordSetsConnection """ Collection of Salesforce Contact Clean Infos """ - contactCleanInfos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactCleanInfoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactCleanInfoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contact Clean Infos to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactCleanInfosConnection + contactCleanInfos( + filter: SalesforceContactCleanInfoConnectionFilter + sortByCustomField: String + sortByField: SalesforceContactCleanInfoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactCleanInfosConnection """ Collection of Salesforce Setup Entity Accesses """ - setupEntityAccesses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Setup Entity Accesses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSetupEntityAccesssConnection + setupEntityAccesses( + filter: SalesforceSetupEntityAccessConnectionFilter + sortByCustomField: String + sortByField: SalesforceSetupEntityAccessSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSetupEntityAccesssConnection """ Collection of Salesforce Documents """ - documents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDocumentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDocumentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Documents to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDocumentsConnection + documents( + filter: SalesforceDocumentConnectionFilter + sortByCustomField: String + sortByField: SalesforceDocumentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDocumentsConnection """ Collection of Salesforce Opportunity Feeds """ - opportunityFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Opportunity Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityFeedsConnection + opportunityFeeds( + filter: SalesforceOpportunityFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceOpportunityFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityFeedsConnection """ Collection of Salesforce Groups """ - groups(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGroupConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGroupSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Groups to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceGroupsConnection + groups( + filter: SalesforceGroupConnectionFilter + sortByCustomField: String + sortByField: SalesforceGroupSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceGroupsConnection """ Collection of Salesforce Library Documents """ - contentWorkspaceDocs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceDocConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceDocSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Library Documents to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspaceDocsConnection + contentWorkspaceDocs( + filter: SalesforceContentWorkspaceDocConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentWorkspaceDocSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspaceDocsConnection """ Collection of Salesforce Platform Cache Partition Types """ - platformCachePartitionTypes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePlatformCachePartitionTypeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Platform Cache Partition Types to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePlatformCachePartitionTypesConnection + platformCachePartitionTypes( + filter: SalesforcePlatformCachePartitionTypeConnectionFilter + sortByCustomField: String + sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePlatformCachePartitionTypesConnection """ Collection of Salesforce Process Instance Nodes """ - processInstanceNodes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceNodeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Process Instance Nodes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstanceNodesConnection + processInstanceNodes( + filter: SalesforceProcessInstanceNodeConnectionFilter + sortByCustomField: String + sortByField: SalesforceProcessInstanceNodeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstanceNodesConnection """ Collection of Salesforce Contract Status Values """ - contractStatuses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractStatusConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractStatusSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contract Status Values to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractStatussConnection + contractStatuses( + filter: SalesforceContractStatusConnectionFilter + sortByCustomField: String + sortByField: SalesforceContractStatusSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractStatussConnection """ Collection of Salesforce D&B Companies """ - dandBCompanies(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDandBCompanyConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDandBCompanySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of D&B Companies to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDandBCompanysConnection + dandBCompanies( + filter: SalesforceDandBCompanyConnectionFilter + sortByCustomField: String + sortByField: SalesforceDandBCompanySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDandBCompanysConnection """ Collection of Salesforce User Provisioning Logs """ - userProvisioningLogs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningLogConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningLogSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User Provisioning Logs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningLogsConnection + userProvisioningLogs( + filter: SalesforceUserProvisioningLogConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserProvisioningLogSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningLogsConnection """ Collection of Salesforce Transaction Security Policies """ - transactionSecurityPolicies(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTransactionSecurityPolicyConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Transaction Security Policies to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTransactionSecurityPolicysConnection + transactionSecurityPolicies( + filter: SalesforceTransactionSecurityPolicyConnectionFilter + sortByCustomField: String + sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTransactionSecurityPolicysConnection """ Collection of Salesforce Login Geo Datas """ - loginGeos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginGeoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginGeoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Login Geo Datas to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLoginGeosConnection + loginGeos( + filter: SalesforceLoginGeoConnectionFilter + sortByCustomField: String + sortByField: SalesforceLoginGeoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLoginGeosConnection """ Collection of Salesforce Case Status Values """ - caseStatuses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseStatusConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseStatusSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Case Status Values to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseStatussConnection + caseStatuses( + filter: SalesforceCaseStatusConnectionFilter + sortByCustomField: String + sortByField: SalesforceCaseStatusSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseStatussConnection """ Collection of Salesforce Push Topics """ - pushTopics(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePushTopicConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePushTopicSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Push Topics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePushTopicsConnection + pushTopics( + filter: SalesforcePushTopicConnectionFilter + sortByCustomField: String + sortByField: SalesforcePushTopicSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePushTopicsConnection """ Collection of Salesforce Holidays """ - holidays(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceHolidayConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceHolidaySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Holidays to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceHolidaysConnection + holidays( + filter: SalesforceHolidayConnectionFilter + sortByCustomField: String + sortByField: SalesforceHolidaySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceHolidaysConnection """ Collection of Salesforce Contract Histories """ - contractHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contract Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractHistorysConnection + contractHistories( + filter: SalesforceContractHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceContractHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractHistorysConnection """ Collection of Salesforce Email Services Addresses """ - emailServicesAddresses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailServicesAddressConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailServicesAddressSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Email Services Addresses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailServicesAddresssConnection + emailServicesAddresses( + filter: SalesforceEmailServicesAddressConnectionFilter + sortByCustomField: String + sortByField: SalesforceEmailServicesAddressSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailServicesAddresssConnection """ Collection of Salesforce Macros """ - macros(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Macros to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMacrosConnection + macros( + filter: SalesforceMacroConnectionFilter + sortByCustomField: String + sortByField: SalesforceMacroSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMacrosConnection """ Collection of Salesforce Secure Agent Plug-in Properties """ - secureAgentPluginProperties(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentPluginPropertyConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Secure Agent Plug-in Properties to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSecureAgentPluginPropertysConnection + secureAgentPluginProperties( + filter: SalesforceSecureAgentPluginPropertyConnectionFilter + sortByCustomField: String + sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSecureAgentPluginPropertysConnection """ Collection of Salesforce Field Permissions """ - fieldPermissionsPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFieldPermissionsConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFieldPermissionsSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Field Permissions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFieldPermissionssConnection + fieldPermissionsPlural( + filter: SalesforceFieldPermissionsConnectionFilter + sortByCustomField: String + sortByField: SalesforceFieldPermissionsSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFieldPermissionssConnection """ Collection of Salesforce Apex Test Queue Items """ - apexTestQueueItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestQueueItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Apex Test Queue Items to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestQueueItemsConnection + apexTestQueueItems( + filter: SalesforceApexTestQueueItemConnectionFilter + sortByCustomField: String + sortByField: SalesforceApexTestQueueItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestQueueItemsConnection """ Collection of Salesforce Stamps """ - stamps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStampConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStampSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Stamps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceStampsConnection + stamps( + filter: SalesforceStampConnectionFilter + sortByCustomField: String + sortByField: SalesforceStampSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceStampsConnection """ Collection of Salesforce Streaming Channels """ - streamingChannels(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStreamingChannelConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStreamingChannelSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Streaming Channels to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceStreamingChannelsConnection + streamingChannels( + filter: SalesforceStreamingChannelConnectionFilter + sortByCustomField: String + sortByField: SalesforceStreamingChannelSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceStreamingChannelsConnection """ Collection of Salesforce Content Version Comments """ - contentVersionComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Content Version Comments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionCommentsConnection + contentVersionComments( + filter: SalesforceContentVersionCommentConnectionFilter + sortByCustomField: String + sortByField: SalesforceContentVersionCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionCommentsConnection """ Collection of Salesforce Matching Rule Items """ - matchingRuleItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMatchingRuleItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMatchingRuleItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Matching Rule Items to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMatchingRuleItemsConnection + matchingRuleItems( + filter: SalesforceMatchingRuleItemConnectionFilter + sortByCustomField: String + sortByField: SalesforceMatchingRuleItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMatchingRuleItemsConnection """ Collection of Salesforce User Feeds """ - userFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserFeedsConnection + userFeeds( + filter: SalesforceUserFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserFeedsConnection """ Collection of Salesforce Task Status Values """ - taskStatuses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskStatusConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskStatusSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Task Status Values to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTaskStatussConnection + taskStatuses( + filter: SalesforceTaskStatusConnectionFilter + sortByCustomField: String + sortByField: SalesforceTaskStatusSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTaskStatussConnection """ Collection of Salesforce Campaign Field Histories """ - campaignHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Campaign Field Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignHistorysConnection + campaignHistories( + filter: SalesforceCampaignHistoryConnectionFilter + sortByCustomField: String + sortByField: SalesforceCampaignHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignHistorysConnection """ Collection of Salesforce Tasks """ - tasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection + tasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: String + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection """ Collection of Salesforce User Provisioning Configs """ - userProvisioningConfigs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningConfigConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User Provisioning Configs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningConfigsConnection + userProvisioningConfigs( + filter: SalesforceUserProvisioningConfigConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserProvisioningConfigSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningConfigsConnection """ Collection of Salesforce Declined Event Relations """ - declinedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDeclinedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Declined Event Relations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDeclinedEventRelationsConnection + declinedEventRelations( + filter: SalesforceDeclinedEventRelationConnectionFilter + sortByCustomField: String + sortByField: SalesforceDeclinedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDeclinedEventRelationsConnection """ Collection of Salesforce Duplicate Record Items """ - duplicateRecordItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Duplicate Record Items to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDuplicateRecordItemsConnection + duplicateRecordItems( + filter: SalesforceDuplicateRecordItemConnectionFilter + sortByCustomField: String + sortByField: SalesforceDuplicateRecordItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDuplicateRecordItemsConnection """ Collection of Salesforce Permission Set Assignments """ - permissionSetAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Permission Set Assignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePermissionSetAssignmentsConnection + permissionSetAssignments( + filter: SalesforcePermissionSetAssignmentConnectionFilter + sortByCustomField: String + sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePermissionSetAssignmentsConnection """ Collection of Salesforce Campaign Shares """ - campaignShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Campaign Shares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignSharesConnection + campaignShares( + filter: SalesforceCampaignShareConnectionFilter + sortByCustomField: String + sortByField: SalesforceCampaignShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignSharesConnection """ Collection of Salesforce SearchActivities """ - searchActivities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSearchActivityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSearchActivitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SearchActivities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSearchActivitysConnection + searchActivities( + filter: SalesforceSearchActivityConnectionFilter + sortByCustomField: String + sortByField: SalesforceSearchActivitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSearchActivitysConnection """ Collection of Salesforce Apex Jobs """ - asyncApexJobs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAsyncApexJobConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAsyncApexJobSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Apex Jobs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAsyncApexJobsConnection + asyncApexJobs( + filter: SalesforceAsyncApexJobConnectionFilter + sortByCustomField: String + sortByField: SalesforceAsyncApexJobSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAsyncApexJobsConnection """ Collection of Salesforce User List View Criterias """ - userListViewCriterions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserListViewCriterionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserListViewCriterionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of User List View Criterias to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserListViewCriterionsConnection + userListViewCriterions( + filter: SalesforceUserListViewCriterionConnectionFilter + sortByCustomField: String + sortByField: SalesforceUserListViewCriterionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserListViewCriterionsConnection """ Collection of Salesforce Order Products """ - orderItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Order Products to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderItemsConnection + orderItems( + filter: SalesforceOrderItemConnectionFilter + sortByCustomField: String + sortByField: SalesforceOrderItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderItemsConnection """ Collection of Salesforce Email Messages """ - emailMessages(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Email Messages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emailMessages( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: String + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce Group Records """ - collaborationGroupRecords(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Group Records to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupRecordsConnection + collaborationGroupRecords( + filter: SalesforceCollaborationGroupRecordConnectionFilter + sortByCustomField: String + sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce Apex Debug Logs """ - apexLogs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexLogConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexLogSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Apex Debug Logs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexLogsConnection + apexLogs( + filter: SalesforceApexLogConnectionFilter + sortByCustomField: String + sortByField: SalesforceApexLogSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexLogsConnection """ Collection of Salesforce Secure Agent Plug-ins """ - secureAgentPlugins(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentPluginConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentPluginSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Secure Agent Plug-ins to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSecureAgentPluginsConnection + secureAgentPlugins( + filter: SalesforceSecureAgentPluginConnectionFilter + sortByCustomField: String + sortByField: SalesforceSecureAgentPluginSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSecureAgentPluginsConnection """ Collection of Salesforce Duplicate Rules """ - duplicateRules(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRuleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRuleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Duplicate Rules to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDuplicateRulesConnection + duplicateRules( + filter: SalesforceDuplicateRuleConnectionFilter + sortByCustomField: String + sortByField: SalesforceDuplicateRuleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDuplicateRulesConnection """ Collection of Salesforce Custom S-Controls """ - scontrols(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceScontrolConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceScontrolSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Custom S-Controls to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceScontrolsConnection + scontrols( + filter: SalesforceScontrolConnectionFilter + sortByCustomField: String + sortByField: SalesforceScontrolSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceScontrolsConnection """ Collection of Salesforce Feed Revisions """ - feedRevisions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedRevisionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedRevisionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Feed Revisions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedRevisionsConnection + feedRevisions( + filter: SalesforceFeedRevisionConnectionFilter + sortByCustomField: String + sortByField: SalesforceFeedRevisionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedRevisionsConnection """ Collection of Salesforce Lead Feeds """ - leadFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Lead Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadFeedsConnection + leadFeeds( + filter: SalesforceLeadFeedConnectionFilter + sortByCustomField: String + sortByField: SalesforceLeadFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadFeedsConnection """ Collection of Salesforce LightningComponentBundles """ - lightningComponentBundles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLightningComponentBundleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLightningComponentBundleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LightningComponentBundles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLightningComponentBundlesConnection + lightningComponentBundles( + filter: SalesforceLightningComponentBundleConnectionFilter + sortByCustomField: String + sortByField: SalesforceLightningComponentBundleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLightningComponentBundlesConnection """ Collection of Salesforce Records """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Records to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: String + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection """ Collection of Salesforce Data Assessment Metrics """ - dataAssessmentMetrics(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentMetricConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentMetricSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Data Assessment Metrics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDataAssessmentMetricsConnection + dataAssessmentMetrics( + filter: SalesforceDataAssessmentMetricConnectionFilter + sortByCustomField: String + sortByField: SalesforceDataAssessmentMetricSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDataAssessmentMetricsConnection """ Collection of Salesforce Apex Test Run Results """ - apexTestRunResults(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestRunResultConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestRunResultSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Apex Test Run Results to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestRunResultsConnection + apexTestRunResults( + filter: SalesforceApexTestRunResultConnectionFilter + sortByCustomField: String + sortByField: SalesforceApexTestRunResultSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestRunResultsConnection """ Collection of Salesforce Lightning Component Bundles """ - auraDefinitionBundles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuraDefinitionBundleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: String """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuraDefinitionBundleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Lightning Component Bundles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuraDefinitionBundlesConnection + auraDefinitionBundles( + filter: SalesforceAuraDefinitionBundleConnectionFilter + sortByCustomField: String + sortByField: SalesforceAuraDefinitionBundleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuraDefinitionBundlesConnection """ Run a SOQL query that fetches any sobject. @@ -57162,7 +55235,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. @@ -57214,17 +55288,11 @@ type NpmOverallDownloadData { """ The download status for all of npm for a specific period """ - period(""" - The later date for download stats, e.g. 2018-12-07. Must be after `startDate` - """ endDate: String! """ - The earlier date for download stats, e.g. 2018-12-06. Must be before `endDate` - """ startDate: String!): NpmOverallDownloadPeriodData + period(endDate: String!, startDate: String!): NpmOverallDownloadPeriodData """ The download status for all of npm for a specific day """ - day(""" - The specific date for download stats, e.g. 2018-12-06 - """ date: String!): NpmOverallDownloadPeriodData + day(date: String!): NpmOverallDownloadPeriodData } type NpmPackageMetadataDistTagEntry { @@ -57319,17 +55387,11 @@ type NpmPackageDownloadData { """ The download status for this package for a specific period """ - period(""" - The later date for download stats, e.g. 2018-12-07. Must be after `startDate` - """ endDate: String! """ - The earlier date for download stats, e.g. 2018-12-06. Must be before `endDate` - """ startDate: String!): NpmPackageDownloadPeriodData + period(endDate: String!, startDate: String!): NpmPackageDownloadPeriodData """ The download status for this package for a specific day """ - day(""" - The specific date for download stats, e.g. 2018-12-06 - """ date: String!): NpmPackageDownloadPeriodData + day(date: String!): NpmPackageDownloadPeriodData } """ @@ -57453,9 +55515,7 @@ type NpmPackageVersion { """ [Bundlephobia](https://bundlephobia.com) is a service by [@pastelsky](https://github.com/pastelsky) to find the cost of adding an `npm` package to your bundle. Use this field to get the bundlephobia info, such as size (both minified and gzipped) on this package. """ - bundlephobia(""" - Whether to include this query in the Bundlephobia analytics stats and recent searches - """ record: Boolean): BundlephobiaDependencyInfo + bundlephobia(record: Boolean): BundlephobiaDependencyInfo } """ @@ -57600,9 +55660,7 @@ type NpmPackage { """ [Bundlephobia](https://bundlephobia.com) is a service by [@pastelsky](https://github.com/pastelsky) to find the cost of adding an `npm` package to your bundle. Use this field to get the bundlephobia info, such as size (both minified and gzipped) on this package. """ - bundlephobia(""" - Whether to include this query in the Bundlephobia analytics stats and recent searches - """ record: Boolean): BundlephobiaDependencyInfo + bundlephobia(record: Boolean): BundlephobiaDependencyInfo """ Tags can be used to provide an alias instead of version numbers. For example, a project might choose to have multiple streams of development and use a different tag for each stream, e.g., stable, beta, dev, canary. """ @@ -57616,9 +55674,7 @@ type NpmQuery { """ Find a npm package member by its npm name, e.g. `"fela"` """ - package(""" - Find the package by its name - """ name: String!): NpmPackage + package(name: String!): NpmPackage """ Overall download stats in the npm ecosystem """ @@ -57636,15 +55692,12 @@ type NetlifyPassthroughQuery { """ Make a GET request to the Netlify API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get(""" - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + get( + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } type NetlifyDomainAvailability { @@ -58443,17 +56496,11 @@ type NetlifyQuery { """ Get a Netlify site by its id """ - site(""" - The site id - """ id: String!): NetlifySite + site(id: String!): NetlifySite """ List all Netlify sites for this account """ - sites(""" - Site name to filter for XXX TODO FIXME - """ filter: String """ - Site name to filter for - """ name: String): [NetlifySite!] + sites(filter: String, name: String): [NetlifySite!] """ List all Netlify accounts for this user """ @@ -58461,11 +56508,7 @@ type NetlifyQuery { """ Check price and availability for a domain. """ - domainAvailability(""" - Domain to search for (e.g. example.com) - """ domain: String! """ - Netlify account id - """ accountId: String!): NetlifyDomainAvailability! + domainAvailability(domain: String!, accountId: String!): NetlifyDomainAvailability! """ Make a REST API call to the Netlify API. @@ -58487,15 +56530,12 @@ type MixpanelPassthroughQuery { """ Make a GET request to the Mixpanel API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get(""" - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + get( + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } """ @@ -58523,15 +56563,12 @@ type MeetupPassthroughQuery { """ Make a GET request to the Meetup API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get(""" - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + get( + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } """ @@ -58559,15 +56596,12 @@ type MailchimpPassthroughQuery { """ Make a GET request to the Mailchimp API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get(""" - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + get( + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } """ @@ -58697,27 +56731,18 @@ type LogdnaQuery { """ Returns a list of log lines """ - export(""" - Allows user to set the subject of the email - """ emailSubject: String """ - Specifies an email that the results will be sent to, by default results are streamed back. - """ 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 """ - Search query. Same format as LogDNA's log viewer. See [https://docs.logdna.com/docs/search](https://docs.logdna.com/docs/search) - """ query: String """ - List of levels to filter by. - """ levels: [String!] """ - List of apps to filter by. - """ apps: [String!] """ - List of hosts to filter by. - """ hosts: [String!] """ - Number of results to return. Depends on your plan, but generally the max is 10,000. Defaults to 100 - """ first: Int """ - End time for logs to export, in Unix timestamp in seconds or milliseconds. - """ to: Float! """ - Start time for logs to export, in Unix timestamp in seconds or milliseconds. - """ from: Float!): LogdnaLogLinesConnection! + export( + emailSubject: String + email: String + prefer: LogdnaExportPreferEnumArg + query: String + levels: [String!] + apps: [String!] + hosts: [String!] + first: Int + to: Float! + from: Float! + ): LogdnaLogLinesConnection! } """ @@ -58769,97 +56794,62 @@ type IntercomQuery { """ The Users resource is the primary way of interacting with Intercom. """ - user(""" - The email you have defined for the user. - """ email: String """ - The user id you have defined for the user. - """ userId: String """ - The canonical user id from Intercom. - """ intercomId: String): IntercomUser + user(email: String, userId: String, intercomId: String): IntercomUser """ Companies allow you to represent commercial organizations using your product. """ - company(""" - The name you have defined for the user. - """ name: String """ - The company_id you have defined for the user. - """ companyId: String """ - The canonical company id from Intercom. - """ intercomId: String): IntercomCompany + company(name: String, companyId: String, intercomId: String): IntercomCompany """ Conversation are how you can communicate with users in Intercom. """ - conversation(""" - If true, retrieves conversation messages in plain text - """ displayAsPlaintext: Boolean """ - id of the conversation - """ id: String!): IntercomConversation + conversation(displayAsPlaintext: Boolean, id: String!): IntercomConversation """ Conversation are how you can communicate with users in Intercom. """ - conversations(""" - When true, retrieves conversation messages in plain text. Defaults to false. - """ displayAsPlaintext: Boolean """ - Return the conversations before a timestamp - """ before: Int """ - What field to sort the results by. Defaults to UPDATED_AT. - """ sortByField: IntercomConversationSortByField """ - Return the conversations in ascending or descending order. Defaults to DESC. - """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection + conversations( + displayAsPlaintext: Boolean + before: Int + sortByField: IntercomConversationSortByField + orderBy: IntercomSortOrderBy + ): IntercomConversationsConnection """ Gets conversations by an admin. If no adminId is provided, gets all unassigned conversations. Conversation are how you can communicate with users in Intercom. """ - conversationsByAdmins(""" - When true, retrieves conversation messages in plain text. Defaults to false. - """ displayAsPlaintext: Boolean """ - Defaults to true. When true, fetches just open conversations. When false, fetches just closed conversations. - """ open: Boolean """ - The id of the admin. If not provided, defaults to unassigned. - """ adminId: String """ - What field to sort the results by. Defaults to UPDATED_AT. - """ sortByField: IntercomConversationSortByField """ - Return the conversations in ascending or descending order. Defaults to DESC. - """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection + conversationsByAdmins( + displayAsPlaintext: Boolean + open: Boolean + adminId: String + sortByField: IntercomConversationSortByField + orderBy: IntercomSortOrderBy + ): IntercomConversationsConnection """ Gets conversations by a user. Conversation are how you can communicate with users in Intercom. """ - conversationsByUsers(""" - When true, retrieves conversation messages in plain text. Defaults to false. - """ displayAsPlaintext: Boolean """ - Defaults to false. When true, fetches just unread conversations. - """ unread: Boolean """ - The id of the user. Provide only one of userId, email, or intercomUserId. - """ intercomUserId: String """ - Your email for the user. Provide only one of userId, email, or intercomUserId. - """ email: String """ - Your user_id for the user. Provide only one of userId, email, or intercomUserId. - """ userId: String """ - What field to sort the results by. Defaults to UPDATED_AT. - """ sortByField: IntercomConversationSortByField """ - Return the conversations in ascending or descending order. Defaults to DESC. - """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection + conversationsByUsers( + displayAsPlaintext: Boolean + unread: Boolean + intercomUserId: String + email: String + userId: String + sortByField: IntercomConversationSortByField + orderBy: IntercomSortOrderBy + ): IntercomConversationsConnection """ All of your users on Intercom """ - users(""" - Filter by segment, only provide one of tagId or segmentId - """ segmentId: String """ - Filter by tag, only provide one of tagId or segmentId - """ tagId: String """ - Limit results to users that were created in that last number of days - """ createdDaysAgo: Int """ - What field to sort the results by. Defaults to CREATED_AT. - """ sortByField: IntercomUsersSortByField """ - Return the users in ascending or descending order. Defaults to DESC. - """ orderBy: IntercomSortOrderBy """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Number of user to fetch, maximum is 60 - """ first: Int): IntercomUsersConnection + users( + segmentId: String + tagId: String + createdDaysAgo: Int + sortByField: IntercomUsersSortByField + orderBy: IntercomSortOrderBy + after: String + first: Int + ): IntercomUsersConnection """ A tag allows you to label your users and companies and list them using that tag. """ @@ -58867,35 +56857,21 @@ type IntercomQuery { """ List of events on Intercom for a user. Provide one of userId, email, or intercomUserId. """ - events(""" - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Get events by the Intercom-defiend user id. - """ intercomUserId: String """ - Get events by the email you have defined for the user. - """ email: String """ - Get events by the user id you have defined for the user. - """ userId: String """ - Number of events to fetch, defaults to 50 - """ first: Int): IntercomEventssConnection + events( + after: String + intercomUserId: String + email: String + userId: String + first: Int + ): IntercomEventssConnection """ List of event summaries for a user. Provide one of userId, email, or intercomUserId. """ - eventsSummary(""" - Get events by the Intercom-defiend user id. - """ intercomUserId: String """ - Get events by the email you have defined for the user. - """ email: String """ - Get events by the user id you have defined for the user. - """ userId: String): [IntercomEventSummary!] + eventsSummary(intercomUserId: String, email: String, userId: String): [IntercomEventSummary!] """ A tag allows you to label your users and companies and list them using that tag. """ - tag(""" - The id of the tag. Only provide one of name or id. - """ id: String """ - The name of the tag. Only provide one of name or id. - """ name: String): IntercomTag + tag(id: String, name: String): IntercomTag """ Webhooks for new events in Intercom: [https://www.intercom.com/help/apps-in-intercom/apps/webhooks](https://www.intercom.com/help/apps-in-intercom/apps/webhooks) """ @@ -58913,15 +56889,12 @@ type HubspotPassthroughQuery { """ Make a GET request to the Hubspot API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get(""" - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + get( + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } """ @@ -60578,11 +58551,7 @@ type HubspotContact { """ """ - engagements(""" - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Number of engagments to fetch. Defaults to 10. Maximum is 100. - """ first: Int): HubspotEngagementsConnection! + engagements(after: String, first: Int): HubspotEngagementsConnection! } """ @@ -61081,11 +59050,7 @@ type HubspotCompany { """ All contacts associated with this company. """ - contacts(""" - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Number of contacts to fetch, maximum is 100. Defaults to 20. - """ first: Int): HubspotContactsConnection + contacts(after: String, first: Int): HubspotContactsConnection } """ @@ -61099,27 +59064,15 @@ type HubspotQuery { """ List companies """ - companies(""" - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Number of companies to fetch, maximum is 250. Defaults to 20. - """ first: Int): HubspotCompaniesConnection + companies(after: String, first: Int): HubspotCompaniesConnection """ Contact """ - contact(""" - Contact email. Must provide exactly one of id or email. - """ email: String """ - Contact id. Must provide exactly one of id or email. - """ id: Int): HubspotContact! + contact(email: String, id: Int): HubspotContact! """ Contacts """ - contacts(""" - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Number of contacts to fetch, maximum is 100. Defaults to 20. - """ first: Int): HubspotContactsConnection + contacts(after: String, first: Int): HubspotContactsConnection """ Get a deal by its id. """ @@ -61127,25 +59080,15 @@ type HubspotQuery { """ List deals """ - deals(""" - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Number of deals to fetch, maximum is 250. Defaults to 100. - """ first: Int): HubspotDealsConnection + deals(after: String, first: Int): HubspotDealsConnection """ Get a list of all engagement for a portal, with pagination. Engagements are used to store data from CRM actions, including notes, tasks, meetings, and calls. Engagements should be associated with at least one contact record, and optionally other contacts, deals, and a company record. """ - engagements(""" - Fetch results after the specified cursor. - """ after: String """ - Number of results to fetch. Defaults to 10, max is 100. - """ first: Int): HubspotEngagementsConnection! + engagements(after: String, first: Int): HubspotEngagementsConnection! """ Get an owner by id. """ - owner(""" - Id of the owner. - """ id: Int!): HubspotOwner! + owner(id: Int!): HubspotOwner! """ Make a REST API call to the Hubspot API. @@ -61632,7 +59575,7 @@ type GoogleDiscoveryApiApis { type GoogleDiscoveryQuery { apis: GoogleDiscoveryApiApis! - api(version: String! name: String!): GoogleDiscoveryApiDetails! + api(version: String!, name: String!): GoogleDiscoveryApiDetails! } """ @@ -62894,204 +60837,23 @@ type GoogleDriveFile { """ Self-contained URL to download the file. Keep the url secure, as anyone with the URL will be able to download the file. Expires in 24 hours. """ - fileDownload(""" - You must provide a mimeType if you are downloading a Google Docs file (e.g. a spreadsheet created with Google Docs). - - mimeType will be ignored for downloading regualar files. - - The following mimeTypes are supported: - - - | Google Doc Format | Conversion Format | Corresponding MIME type | - | ----------------- | ------------------------ | ------------------------------------------------------------------------- | - | Documents | HTML | text/html | - | | HTML (zipped) | application/zip | - | | Plain text | text/plain | - | | Rich text | application/rtf | - | | Open Office doc | application/vnd.oasis.opendocument.text | - | | PDF | application/pdf | - | | MS Word document | application/vnd.openxmlformats-officedocument.wordprocessingml.document | - | | EPUB | application/epub+zip | - | Spreadsheets | MS Excel | application/vnd.openxmlformats-officedocument.spreadsheetml.sheet | - | | Open Office sheet | application/x-vnd.oasis.opendocument.spreadsheet | - | | PDF | application/pdf | - | | CSV (first sheet only) | text/csv | - | | TSV (first sheet only) | text/tab-separated-values | - | | HTML (zipped) | application/zip | - | Drawings | JPEG | image/jpeg | - | | PNG | image/png | - | | SVG | image/svg+xml | - | | PDF | application/pdf | - | Presentations | MS PowerPoint | application/vnd.openxmlformats-officedocument.presentationml.presentation | - | | Open Office presentation | application/vnd.oasis.opendocument.presentation | - | | PDF | application/pdf | - | | Plain text | text/plain | - | Apps Scripts | JSON | application/vnd.google-apps.script+json | - - Reference: [https://developers.google.com/drive/api/v3/manage-downloads](https://developers.google.com/drive/api/v3/manage-downloads) - """ mimeType: String): GoogleDriveOneGraphFileDownload + fileDownload(mimeType: String): GoogleDriveOneGraphFileDownload } """ Google Drive """ type GoogleDrive { - file(""" - Id of the file - """ id: String!): GoogleDriveFile! - files(""" - Optional query param to search for specific files. - - **Examples** - - Search for files with the name "hello" - - ``` - name = 'hello' - ``` - - Search for folders using the folder-specific MIME type - - ``` - mimeType = 'application/vnd.google-apps.folder' - ``` - - Search for files that are not folders - - ``` - mimeType != 'application/vnd.google-apps.folder' - ``` - - Search for files with a name containing the words "hello" and "goodbye" - - ``` - name contains 'hello' and name contains 'goodbye' - ``` - - Search for files with a name that does not contain the word "hello" - - ``` - not name contains 'hello' - ``` - - Search for files containing the word "hello" in the content - - ``` - fullText contains 'hello' - ``` - - Search for files not containing the word "hello" in the content - - ``` - not fullText contains 'hello' - ``` - - Search for files containing the exact phrase "hello world" in the content - - ``` - fullText contains '"hello world"' - fullText contains '"hello_world"' - ``` - - Search for files with a query containing the "" character (e.g., "\authors") - - ``` - fullText contains '\authors' - ``` - - Search for files writeable by the user "test@example.org" - - ``` - 'test@example.org' in writers - ``` - - Search for files writeable by the members of the group "group@example.org" - - ``` - 'group@example.org' in writers - ``` - - Search for the ID 1234567 in the parents collection. This finds all files and folders located directly in the folder whose ID is 1234567. - - ``` - '1234567' in parents - ``` - - Search for the alias ID appDataFolder in the parents collection. This finds all files and folders located directly under the Application Data folder. - - ``` - 'appDataFolder' in parents - ``` - - Search for files writeable by the users "test@example.org" and "test2@example.org" - - ``` - 'test@example.org' in writers and 'test2@example.org' in writers - ``` - - Search for files containing the text "important" which are in the trash - - ``` - fullText contains 'important' and trashed = true - ``` - - Search for files modified after June 4th 2012 - - ``` - modifiedTime > '2012-06-04T12:00:00' // default time zone is UTC - modifiedTime > '2012-06-04T12:00:00-08:00' - ``` - - Search for files shared with the authorized user with "hello" in the name - - ``` - sharedWithMe and name contains 'hello' - ``` - - Search for files with a custom file property named additionalID with the value 8e8aceg2af2ge72e78. - - ``` - appProperties has { key='additionalID' and value='8e8aceg2af2ge72e78' } - ``` - - Search for files that have not been shared with anyone or domains (only private, or shared with specific users or groups) - - ``` - visibility = 'limited' - ``` - - **Fields** - - | Field | Value Type | Operators | Description | - | -------------- | ---------- | ------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | - | name | string | contains, =, != | Name of the file. `contains` only matches from the start of the string (e.g. 'hello' will find 'hello world', but not 'world hello' | - | fullText | string | contains | Full text of the file including name, description, content, and indexable text. `contains` only matches whole words | - | mimeType | string | contains, =, != | MIME type of the file. | - | modifiedTime | date3 | <=, <, =, !=, >, >= | Date of the last modification of the file. | - | viewedByMeTime | date3 | <=, <, =, !=, >, >= | Date that the user last viewed a file. | - | trashed | boolean | =, != | Whether the file is in the trash or not. | - | starred | boolean | =, != | Whether the file is starred or not. | - | parents | collection | in | Whether the parents collection contains the specified ID. | - | owners | collection | in | Users who own the file. | - | writers | collection | in | Users or groups who have permission to modify the file. | - | readers | collection | in | Users or groups who have permission to read the file. | - | sharedWithMe | boolean | =, != | Files that are in the user's "Shared with me" collection. | - | 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 """ - 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 """ - 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!] """ - 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 """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Spaces to query within the corpus. - """ spaces: [GoogleDriveFilesSpacesEnum!] """ - ID of Team Drive to search - """ teamDriveId: String): GoogleDriveFilesConnection! + file(id: String!): GoogleDriveFile! + files( + q: String + corpora: GoogleDriveFilesCorporaEnum + orderBy: [GoogleDriveFilesOrderByEnum!] + first: Int + after: String + spaces: [GoogleDriveFilesSpacesEnum!] + teamDriveId: String + ): GoogleDriveFilesConnection! } """ @@ -63529,7 +61291,7 @@ type GoogleComputeInstances { Google Compute Engine """ type GoogleComputeEngine { - instances(zone: String! projectId: String!): GoogleComputeInstances! + instances(zone: String!, projectId: String!): GoogleComputeInstances! } """ @@ -63667,31 +61429,17 @@ type GoogleCalendarCalendar { """ Events for the calendar """ - events(""" - Time zone used in the response. The default is the time zone of the calendar. - """ 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 """ - 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 """ - 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 """ - Free text search terms to find events that match these terms in any field, except for extended properties. - """ 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 """ - The order of the events returned in the result. The default is an unspecified, stable order. - - Acceptable values are: - - "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 """ - Cursor for use in pagination. Returns the elements in the list that come after the specified cursor. - """ after: String """ - Number of events to return. - """ first: Int): GoogleCalendarEventsConnection + events( + timeZone: String + timeMax: String + timeMin: String + showDeleted: Boolean + q: String + singleEvents: Boolean + orderBy: String + after: String + first: Int + ): GoogleCalendarEventsConnection } """ @@ -64371,33 +62119,18 @@ type GoogleCalendarQuery { An event on a calendar containing information such as the title, start and end times, and attendees. Events can be either single events or recurring events. """ - events(""" - Time zone used in the response. The default is the time zone of the calendar. - """ 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 """ - 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 """ - 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 """ - Free text search terms to find events that match these terms in any field, except for extended properties. - """ 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 """ - The order of the events returned in the result. The default is an unspecified, stable order. - - Acceptable values are: - - "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 """ - Cursor for use in pagination. Returns the elements in the list that come after the specified cursor. - """ after: String """ - Number of events to return. - """ first: Int """ - Id of the calendar. Use "primary" to get the logged in user's primary calendar. - """ calendarId: String!): GoogleCalendarEventsConnection + events( + timeZone: String + timeMax: String + timeMin: String + showDeleted: Boolean + q: String + singleEvents: Boolean + orderBy: String + after: String + first: Int + calendarId: String! + ): GoogleCalendarEventsConnection """ Calendar events. @@ -64405,11 +62138,7 @@ type GoogleCalendarQuery { An event on a calendar containing information such as the title, start and end times, and attendees. Events can be either single events or recurring events. """ - calendars(""" - Cursor for use in pagination. Returns the elements in the list that come after the specified cursor. - """ after: String """ - Number of events to return. - """ first: Int): GoogleCalendarCalendarsConnection + calendars(after: String, first: Int): GoogleCalendarCalendarsConnection } """ @@ -67032,7 +64761,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 +64827,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 """ @@ -67136,12 +64865,7 @@ type GmailThreadDeprecated { A short part of the message text. """ snippet: String - expanded(""" - 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): GmailThread! + expanded(format: String): GmailThread! } type GmailListThreadsResponseDeprecated { @@ -67497,48 +65221,25 @@ type GmailDraftsConnection { Google Gmail """ type Gmail { - drafts(""" - 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 """ - 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 """ - Returns the drafts in the list that come after the specified cursor. - """ after: String """ - The maximum number of drafts to return. Defaults to 10. - """ first: Int): GmailDraftsConnection! - messages(""" - 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 """ - 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 """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - The maximum number of messages to return. Defaults to 10. - """ 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 """ - Returns the elements in the list that come after the specified cursor. - """ 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 """ - The maximum number of messages to return. Defaults to 10. - """ first: Int labelIds: String): GmailThreadsConnection! + drafts(format: String, q: String, after: String, first: Int): GmailDraftsConnection! + messages( + format: String + q: String + after: String + first: Int + labelIds: String + ): GmailMessagesConnection! + messageThreads( + format: String + after: String + q: String + first: Int + labelIds: String + ): GmailThreadsConnection! """ Return a draft by its id """ - draft(""" - Draft id - """ id: String!): GmailDraft! + draft(id: String!): GmailDraft! """ Return a message by its id """ @@ -67547,12 +65248,10 @@ type Gmail { Return a thread by its id """ thread(id: String!): GmailThread! - 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 """ - 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") + threads(pageToken: String, 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") labels: GmailListLabelsResponse! } @@ -67819,15 +65518,12 @@ type GoogleAnalyticsRealtimePassthroughQuery { """ Make a GET request to the Google Analytics API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get(""" - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + get( + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } type GoogleAnalyticsRealtimePassthroughApi { @@ -67852,15 +65548,12 @@ type GoogleAnalyticsReportingPassthroughQuery { """ Make a GET request to the Google Analytics API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get(""" - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + get( + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } type GoogleAnalyticsReportingPassthroughApi { @@ -67889,15 +65582,11 @@ type GoogleAnalytics { """ A Google analytics account. """ - account(""" - The account id for the account to fetch. - """ id: String!): GoogleAnalyticsAccont! + account(id: String!): GoogleAnalyticsAccont! """ Google analytics accounts, with pagination information. """ - accounts(""" - Number of accounts to fetch - """ first: Int): GoogleAnalyticsAccountsConnection! + accounts(first: Int): GoogleAnalyticsAccountsConnection! } """ @@ -69732,15 +67421,11 @@ type FedexQuery { """ Track a Fedex package """ - track(""" - Tracking number for the package - """ trackingNumber: String!): FedexTrackReply! + track(trackingNumber: String!): FedexTrackReply! """ Track multiple Fedex packages """ - trackMultiple(""" - Tracking numbers for packages - """ trackingNumbers: [String!]!): [FedexTrackReply]! + trackMultiple(trackingNumbers: [String!]!): [FedexTrackReply]! } """ @@ -69765,8 +67450,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 +67562,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 +67584,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 +67640,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 +67662,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 +67731,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 +67956,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 +67964,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 +68258,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 +68466,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 +68526,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 +68640,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 +68689,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 +68824,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 +68899,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 +68952,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 +69097,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 +69324,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 +69347,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 +69367,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 +70015,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 +70261,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 +70582,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 +70708,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 +70753,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 +70775,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 +70797,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 +70817,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 +70892,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 +70953,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 +71136,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 +71205,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 +71317,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 +71416,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 +71519,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 +71615,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 +71657,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 +71688,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 +71798,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 +71828,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 +72098,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 +72216,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 +72296,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 +72563,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 +72605,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 +72691,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 +72791,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 +72863,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 +73060,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 +73116,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 +73136,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 +73171,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 +73260,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 +73357,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 +73442,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 +73552,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 +73593,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 +73643,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 +73702,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 +73988,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 +74183,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 +74230,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 +75561,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 +75699,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 +75954,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 +76077,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 +76177,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 +76205,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 +76237,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 +76393,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 +76460,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 +76820,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 +76880,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 +77113,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 +77400,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! } """ @@ -79008,15 +78120,12 @@ type EggheadioPassthroughQuery { """ Make a GET request to the Egghead.io API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get(""" - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + get( + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } """ @@ -79353,18 +78462,13 @@ type DropboxFileSearchResultsConnection { The root for dropbx. """ type DropboxQuery { - account(""" - A user's account information - """ 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 """ - The path in the user's Dropbox to search. Should probably be a folder. Defaults to the root folder. - """ filePath: String """ - Number of results to fetch - """ first: Int """ - - """ query: String!): DropboxFileSearchResultsConnection + account(accountId: String!): DropboxAccount + searchFiles( + mode: DropboxFileSearchMode + filePath: String + first: Int + query: String! + ): DropboxFileSearchResultsConnection } """ @@ -79842,15 +78946,12 @@ type DevToPassthroughQuery { """ Make a GET request to the Dev.to API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get(""" - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + get( + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } """ @@ -79878,34 +78979,7 @@ type DevToQuery { Responses, according to the combination of params, are cached for 24 hours. """ - articles(""" - Adding this will allow the client to return the most popular articles - in the last `N` days. - - `top` indicates the number of days since publication of the articles - returned. - - This param can only be used by itself or with `tag`. - """ 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 """ - 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 """ - Adding this parameter will return articles that contain the - requested tag. - - This param can be used by itself, with `page` or with `top`. - """ tag: String): DevToArticlessConnection + articles(top: Int, state: String, username: String, tag: String): DevToArticlessConnection """ Retrieve a list of webhooks they have previously registered. @@ -79963,15 +79037,12 @@ type ContentfulPassthroughQuery { """ Make a GET request to the Contentful API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get(""" - Whether to send an unauthenticated request to the API. Defaults to false. - """ allowUnauthenticated: Boolean """ - The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` - """ queryString: String """ - The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` - """ query: [[String!]!] """ - The path of the URL, e.g. `/posts`. - """ path: String!): PassthroughResult! + get( + allowUnauthenticated: Boolean + queryString: String + query: [[String!]!] + path: String! + ): PassthroughResult! } """ @@ -80291,13 +79362,7 @@ type CloudflareAccount { """ All memberships of an account """ - memberships(""" - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Direction to order results by, defaults to descending - """ direction: CloudflareDirectionArg """ - Number of results to return, minimum is 5, maximum is 50. Defaults to 20. - """ first: Int): CloudflareAccountMembershipsConnection + memberships(after: String, direction: CloudflareDirectionArg, first: Int): CloudflareAccountMembershipsConnection """ All roles of an account """ @@ -80329,19 +79394,11 @@ type CloudflareQuery { """ Accounts that the current authentication owns or has access to """ - accounts(""" - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Direction to order results by, defaults to descending - """ direction: CloudflareDirectionArg """ - Number of results to return, minimum is 5, maximum is 50. Defaults to 20. - """ first: Int): CloudflareAccountsConnection + accounts(after: String, direction: CloudflareDirectionArg, first: Int): CloudflareAccountsConnection """ Get information about a specific account """ - account(""" - Account Id - """ id: String!): CloudflareAccount + account(id: String!): CloudflareAccount """ currently logged in user """ @@ -80571,13 +79628,22 @@ type Clearbit { """ Clearbit company autocomplete """ - autocomplete(""" - The partial name of the company - """ name: String!): [ClearbitAutocomplete!] + autocomplete(name: String!): [ClearbitAutocomplete!] """ 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 { @@ -80600,9 +79666,7 @@ type BundlephobiaRecentSearch { """ Info on a recently searched package from Bundlephobia at the searched for version. """ - package(""" - Whether to include this query in the Bundlephobia analytics stats and recent searches - """ record: Boolean): BundlephobiaDependencyInfo + package(record: Boolean): BundlephobiaDependencyInfo } type BundlephobiaDependencySize { @@ -80678,19 +79742,11 @@ type BundlephobiaQuery { """ Info on a package from Bundlephobia. """ - packageInfo(""" - Whether to include this query in the Bundlephobia analytics stats and recent searches - """ record: Boolean """ - The npm package version, e.g. `10.0.1` - """ version: String """ - The npm package name. - """ package: String!): BundlephobiaDependencyInfo + packageInfo(record: Boolean, version: String, package: String!): BundlephobiaDependencyInfo """ Historical info on a package from Bundlephobia. """ - packageHistory(""" - The npm package name. - """ package: String!): [BundlephobiaDependencyInfo] + packageHistory(package: String!): [BundlephobiaDependencyInfo] """ Get recent searches on Bundlephobia. """ @@ -81111,57 +80167,36 @@ The root for Box. """ type BoxQuery { user(userId: String!): BoxUser - searchFiles(""" - Whether to search for trash. If true, only returns items from the trash - """ searchTrash: Boolean """ - Search for objects of specified content types. - """ contentTypes: [BoxFileSearchContentType!] """ - Search for the contents of specific folders (and folders within them). - """ ancestorFolderIds: [String!] """ - Search for objects by owner. - """ ownerUserIds: [String!] """ - Return only files within a stated size range. Specify the range in bytes - """ 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 """ - 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 """ - Limit searches to specific file extensions like pdf,png, or doc. - """ fileExtensions: [String!] """ - Number of results to fetch - """ 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 + searchFiles( + searchTrash: Boolean + contentTypes: [BoxFileSearchContentType!] + ancestorFolderIds: [String!] + ownerUserIds: [String!] + size: BoxRangeArg + updatedAt: BoxRangeArg + createdAt: BoxRangeArg + fileExtensions: [String!] + first: Int + query: String! + ): BoxFilesConnection } type AirtableTable { - records(""" - A [formula](https://support.airtable.com/hc/en-us/articles/203255215-Formula-Field-Reference) used to filter records. The formula will be evaluated for each record, and if the result is not `0`, `false`, `""`, `NaN`, `[]`, or `#Error!` the record will be included in the response. - - 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 """ - 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!] """ - 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 """ - Returns the elements that come after the specified cursor. - """ after: String """ - How many records to fetch. Defaults to 10, max is 100. - """ first: Int): AirtableRecordsConnection! - record(""" - Id of the record to fetch. - """ recordId: String!): AirtableRecord! + records( + filterByFormula: String + sort: [AirtableRecordsSortArg!] + view: String + after: String + first: Int + ): AirtableRecordsConnection! + record(recordId: String!): AirtableRecord! } """ An Airtable base contains all of the information you need for a particular project or collection. Each of the square icons on your homepage is a different base. It's kind of like a workbook in a traditional spreadsheet, and can contain multiple tables of content. """ type AirtableBase { - table(""" - Case-insensitive name for the table - """ tableName: String!): AirtableTable! + table(tableName: String!): AirtableTable! } enum AirtableRecordsSortDirection { @@ -81228,38 +80263,20 @@ type AirtableRecordsConnection { The root for Airtable. """ type AirtableQuery { - records(""" - A [formula](https://support.airtable.com/hc/en-us/articles/203255215-Formula-Field-Reference) used to filter records. The formula will be evaluated for each record, and if the result is not `0`, `false`, `""`, `NaN`, `[]`, or `#Error!` the record will be included in the response. - - 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 """ - 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!] """ - 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 """ - Returns the elements that come after the specified cursor. - """ after: String """ - How many records to fetch. Defaults to 10, max is 100. - """ first: Int """ - The table name that contains the records. - """ 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! """ - The table name that contains the record. - """ 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! + records( + filterByFormula: String + sort: [AirtableRecordsSortArg!] + view: String + after: String + first: Int + tableName: String! + baseId: String! + ): AirtableRecordsConnection! + record(recordId: String!, tableName: String!, baseId: String!): AirtableRecord! """ An Airtable base contains all of the information you need for a particular project or collection. Each of the square icons on your homepage is a different base. It's kind of like a workbook in a traditional spreadsheet, and can contain multiple tables of content. """ - base(""" - 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!): AirtableBase! + base(baseId: String!): AirtableBase! } input OneGraphServiceUserIds { @@ -83665,17 +82682,13 @@ type GitHubPullRequestReviewContributionsByRepository { """ The pull request review contributions. """ - contributions(""" - Ordering options for contributions returned from the connection. - """ orderBy: GitHubContributionOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCreatedPullRequestReviewContributionConnection! + contributions( + orderBy: GitHubContributionOrder + last: Int + first: Int + before: String + after: String + ): GitHubCreatedPullRequestReviewContributionConnection! """ The repository in which the pull request reviews were made. """ @@ -83725,17 +82738,13 @@ type GitHubPullRequestContributionsByRepository { """ The pull request contributions. """ - contributions(""" - Ordering options for contributions returned from the connection. - """ orderBy: GitHubContributionOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCreatedPullRequestContributionConnection! + contributions( + orderBy: GitHubContributionOrder + last: Int + first: Int + before: String + after: String + ): GitHubCreatedPullRequestContributionConnection! """ The repository in which the pull requests were opened. """ @@ -83785,17 +82794,13 @@ type GitHubIssueContributionsByRepository { """ The issue contributions. """ - contributions(""" - Ordering options for contributions returned from the connection. - """ orderBy: GitHubContributionOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCreatedIssueContributionConnection! + contributions( + orderBy: GitHubContributionOrder + last: Int + first: Int + before: String + after: String + ): GitHubCreatedIssueContributionConnection! """ The repository in which the issues were opened. """ @@ -84286,17 +83291,13 @@ type GitHubCommitContributionsByRepository { """ The commit contributions, each representing a day. """ - contributions(""" - Ordering options for commit contributions returned from the connection. - """ orderBy: GitHubCommitContributionOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCreatedCommitContributionConnection! + contributions( + orderBy: GitHubCommitContributionOrder + last: Int + first: Int + before: String + after: String + ): GitHubCreatedCommitContributionConnection! """ The repository in which the commits were made. """ @@ -84318,9 +83319,7 @@ type GitHubContributionsCollection { """ Commit contributions made by the user, grouped by repository. """ - commitContributionsByRepository(""" - How many repositories should be included. - """ maxRepositories: Int): [GitHubCommitContributionsByRepository!]! + commitContributionsByRepository(maxRepositories: Int): [GitHubCommitContributionsByRepository!]! """ A calendar of this user's contributions on GitHub. """ @@ -84372,31 +83371,23 @@ type GitHubContributionsCollection { """ A list of issues the user opened. """ - issueContributions(""" - Ordering options for contributions returned from the connection. - """ orderBy: GitHubContributionOrder """ - Should the user's most commented issue be excluded from the result. - """ excludePopular: Boolean """ - Should the user's first issue ever be excluded from the result. - """ excludeFirst: Boolean """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCreatedIssueContributionConnection! + issueContributions( + orderBy: GitHubContributionOrder + excludePopular: Boolean + excludeFirst: Boolean + last: Int + first: Int + before: String + after: String + ): GitHubCreatedIssueContributionConnection! """ Issue contributions made by the user, grouped by repository. """ - issueContributionsByRepository(""" - Should the user's most commented issue be excluded from the result. - """ excludePopular: Boolean """ - Should the user's first issue ever be excluded from the result. - """ excludeFirst: Boolean """ - How many repositories should be included. - """ maxRepositories: Int): [GitHubIssueContributionsByRepository!]! + issueContributionsByRepository( + excludePopular: Boolean + excludeFirst: Boolean + maxRepositories: Int + ): [GitHubIssueContributionsByRepository!]! """ When the user signed up for GitHub. This will be null if that sign up date falls outside the collection's time range and ignoreTimeRange is false. """ @@ -84428,67 +83419,48 @@ type GitHubContributionsCollection { """ Pull request contributions made by the user. """ - pullRequestContributions(""" - Ordering options for contributions returned from the connection. - """ orderBy: GitHubContributionOrder """ - Should the user's most commented pull request be excluded from the result. - """ excludePopular: Boolean """ - Should the user's first pull request ever be excluded from the result. - """ excludeFirst: Boolean """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCreatedPullRequestContributionConnection! + pullRequestContributions( + orderBy: GitHubContributionOrder + excludePopular: Boolean + excludeFirst: Boolean + last: Int + first: Int + before: String + after: String + ): GitHubCreatedPullRequestContributionConnection! """ Pull request contributions made by the user, grouped by repository. """ - pullRequestContributionsByRepository(""" - Should the user's most commented pull request be excluded from the result. - """ excludePopular: Boolean """ - Should the user's first pull request ever be excluded from the result. - """ excludeFirst: Boolean """ - How many repositories should be included. - """ maxRepositories: Int): [GitHubPullRequestContributionsByRepository!]! + pullRequestContributionsByRepository( + excludePopular: Boolean + excludeFirst: Boolean + maxRepositories: Int + ): [GitHubPullRequestContributionsByRepository!]! """ Pull request review contributions made by the user. """ - pullRequestReviewContributions(""" - Ordering options for contributions returned from the connection. - """ orderBy: GitHubContributionOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCreatedPullRequestReviewContributionConnection! + pullRequestReviewContributions( + orderBy: GitHubContributionOrder + last: Int + first: Int + before: String + after: String + ): GitHubCreatedPullRequestReviewContributionConnection! """ Pull request review contributions made by the user, grouped by repository. """ - pullRequestReviewContributionsByRepository(""" - How many repositories should be included. - """ maxRepositories: Int): [GitHubPullRequestReviewContributionsByRepository!]! + pullRequestReviewContributionsByRepository(maxRepositories: Int): [GitHubPullRequestReviewContributionsByRepository!]! """ A list of repositories owned by the user that the user created in this time range. """ - repositoryContributions(""" - Ordering options for contributions returned from the connection. - """ orderBy: GitHubContributionOrder """ - Should the user's first repository ever be excluded from the result. - """ excludeFirst: Boolean """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCreatedRepositoryContributionConnection! + repositoryContributions( + orderBy: GitHubContributionOrder + excludeFirst: Boolean + last: Int + first: Int + before: String + after: String + ): GitHubCreatedRepositoryContributionConnection! """ A count of contributions made by the user that the viewer cannot access. Only non-zero when the user has chosen to share their private contribution counts. """ @@ -84504,19 +83476,11 @@ type GitHubContributionsCollection { """ How many issues the user opened. """ - totalIssueContributions(""" - Should the user's most commented issue be excluded from this count. - """ excludePopular: Boolean """ - Should the user's first issue ever be excluded from this count. - """ excludeFirst: Boolean): Int! + totalIssueContributions(excludePopular: Boolean, excludeFirst: Boolean): Int! """ How many pull requests the user opened. """ - totalPullRequestContributions(""" - Should the user's most commented pull request be excluded from this count. - """ excludePopular: Boolean """ - Should the user's first pull request ever be excluded from this count. - """ excludeFirst: Boolean): Int! + totalPullRequestContributions(excludePopular: Boolean, excludeFirst: Boolean): Int! """ How many pull request reviews the user left. """ @@ -84528,11 +83492,10 @@ type GitHubContributionsCollection { """ How many different repositories the user opened issues in. """ - totalRepositoriesWithContributedIssues(""" - Should the user's most commented issue be excluded from this count. - """ excludePopular: Boolean """ - Should the user's first issue ever be excluded from this count. - """ excludeFirst: Boolean): Int! + totalRepositoriesWithContributedIssues( + excludePopular: Boolean + excludeFirst: Boolean + ): Int! """ How many different repositories the user left pull request reviews in. """ @@ -84540,17 +83503,14 @@ type GitHubContributionsCollection { """ How many different repositories the user opened pull requests in. """ - totalRepositoriesWithContributedPullRequests(""" - Should the user's most commented pull request be excluded from this count. - """ excludePopular: Boolean """ - Should the user's first pull request ever be excluded from this count. - """ excludeFirst: Boolean): Int! + totalRepositoriesWithContributedPullRequests( + excludePopular: Boolean + excludeFirst: Boolean + ): Int! """ How many repositories the user created. """ - totalRepositoryContributions(""" - Should the user's first repository ever be excluded from this count. - """ excludeFirst: Boolean): Int! + totalRepositoryContributions(excludeFirst: Boolean): Int! """ The user who made the contributions in this collection. """ @@ -84564,9 +83524,7 @@ interface GitHubProfileOwner { """ Determine if this repository owner has any items that can be pinned to their profile. """ - anyPinnableItems(""" - Filter to only a particular kind of pinnable item. - """ type: GitHubPinnableItemType): Boolean! + anyPinnableItems(type: GitHubPinnableItemType): Boolean! """ The public profile email. """ @@ -84594,31 +83552,23 @@ interface GitHubProfileOwner { """ A list of repositories and gists this profile owner can pin to their profile. """ - pinnableItems(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filter the types of pinnable items that are returned. - """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! + pinnableItems( + last: Int + first: Int + before: String + after: String + types: [GitHubPinnableItemType!] + ): GitHubPinnableItemConnection! """ A list of repositories and gists this profile owner has pinned to their profile """ - pinnedItems(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filter the types of pinned items that are returned. - """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! + pinnedItems( + last: Int + first: Int + before: String + after: String + types: [GitHubPinnableItemType!] + ): GitHubPinnableItemConnection! """ Returns how many more items this profile owner can pin to their profile. """ @@ -84746,15 +83696,7 @@ type GitHubProfileItemShowcase { """ The repositories and gists in the showcase. If the profile owner has any pinned items, those will be returned. Otherwise, the profile owner's popular repositories will be returned. """ - items(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubPinnableItemConnection! + items(last: Int, first: Int, before: String, after: String): GitHubPinnableItemConnection! } enum GitHubAuditLogOrderField { @@ -85054,9 +83996,7 @@ type BrexExport implements OneGraphNode & BrexNode { """ status: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85139,9 +84079,7 @@ type BrexFedachParticipant implements OneGraphNode & BrexNode { """ servicingFrbNumber: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85192,9 +84130,7 @@ type BrexFedwireParticipant implements OneGraphNode & BrexNode { """ telegraphicName: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85229,9 +84165,7 @@ type BrexIntegrationErrorDetails implements OneGraphNode & BrexNode { """ minPostedAt: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85261,9 +84195,7 @@ type BrexIntegrationRulesFilterFacet implements OneGraphNode & BrexNode { """ type: BrexIntegrationRulesFilterFacetType - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85282,9 +84214,7 @@ type BrexIntegrationUser implements OneGraphNode & BrexNode { """ user: BrexUser - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85365,9 +84295,7 @@ type BrexMilesTransfer implements OneGraphNode & BrexNode { """ toUser: BrexUser - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85710,9 +84638,7 @@ type BrexOnboardingBlueprint implements OneGraphNode & BrexNode { Determines which application handler will be used to process the application """ type: BrexOnboardingBlueprintType! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85738,7 +84664,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 """ @@ -85747,9 +84673,7 @@ type BrexOnboardingApplication implements OneGraphNode & BrexNode { The status of the application """ status: BrexOnboardingApplicationStatus! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85771,7 +84695,8 @@ type BrexOnboardingInformationRequest implements OneGraphNode & BrexNode { """ """ - content: BrexOnboardingInformationRequestContent! @deprecated(reason: "Use contentPage.content instead") + content: BrexOnboardingInformationRequestContent! + @deprecated(reason: "Use contentPage.content instead") """ """ @@ -85792,9 +84717,7 @@ type BrexOnboardingInformationRequest implements OneGraphNode & BrexNode { """ type: BrexOnboardingInformationRequestType! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85849,9 +84772,7 @@ type BrexProductApplication implements OneGraphNode & BrexNode { """ status: BrexProductApplicationStatus - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85909,9 +84830,7 @@ type BrexReferral implements OneGraphNode & BrexNode { """ status: BrexReferralStatus! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85965,10 +84884,8 @@ type BrexRewardsCampaign implements OneGraphNode & BrexNode { """ """ - 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! + rewardsTriggers(last: Int, first: Int, before: String, after: String): BrexRewardsTriggerConnection + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86027,9 +84944,7 @@ type BrexRole implements OneGraphNode & BrexNode { """ rules: [BrexRoleRule] - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86129,9 +85044,7 @@ type BrexServicingPolicy implements OneGraphNode & BrexNode { The ID of an object """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86293,9 +85206,7 @@ type BrexLoyaltyProgram implements OneGraphNode & BrexNode { """ quote: BrexMilesTransferQuote - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86326,9 +85237,7 @@ type BrexProgramMembership implements OneGraphNode & BrexNode { """ membershipId: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86505,9 +85414,7 @@ type BrexNotificationSubscription implements OneGraphNode & BrexNode { """ notificationType: BrexNotificationType - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86553,7 +85460,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 """ """ @@ -86562,9 +85474,7 @@ type BrexChannel implements OneGraphNode & BrexNode { """ status: BrexChannelStatus - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86755,9 +85665,7 @@ type BrexFinancialBalance implements OneGraphNode & BrexNode { The ID of an object """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86862,9 +85770,7 @@ type BrexFinancialInstitution implements OneGraphNode & BrexNode { """ website: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86925,9 +85831,7 @@ type BrexFinancialAccount implements OneGraphNode & BrexNode { """ source: BrexFinancialSource - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86969,7 +85873,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 """ @@ -86986,9 +85890,7 @@ type BrexFinancialSource implements OneGraphNode & BrexNode { """ status: BrexFinancialSourceStatus - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87406,9 +86308,7 @@ type BrexDepositsTransaction implements OneGraphNode & BrexNode { """ type: BrexDepositsTransactionType! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87479,9 +86379,7 @@ type BrexDepositsStatement implements OneGraphNode & BrexNode { """ periodStartTime: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87601,9 +86499,7 @@ type BrexCounterparty implements OneGraphNode & BrexNode { """ type: BrexType - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87683,7 +86579,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 +86599,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,10 +86622,16 @@ type BrexDepositsAccount implements OneGraphNode & BrexNode { """ """ - 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! + transactions( + status: BrexStatus + startTime: String + last: Int + first: Int + endTime: String + before: String + after: String + ): BrexDepositsTransactionConnection + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87890,7 +86799,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 """ """ @@ -87919,9 +86828,7 @@ type BrexCollectionIntention implements OneGraphNode & BrexNode { """ status: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87948,9 +86855,7 @@ type BrexRewardsRefund implements OneGraphNode & BrexNode { """ refundedStatementEntry: BrexStatementEntry! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88015,9 +86920,7 @@ type BrexStatementEntryLens implements OneGraphNode & BrexNode { """ userCategory: BrexUserCategory - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88045,9 +86948,7 @@ type BrexExportItem implements OneGraphNode & BrexNode { """ status: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88126,9 +87027,7 @@ type BrexStatementEntry implements OneGraphNode & BrexNode { """ userCategory: BrexUserCategory - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88241,9 +87140,7 @@ type BrexAsset implements OneGraphNode & BrexNode { """ presignedDownloadUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88266,9 +87163,7 @@ type BrexReceipt implements OneGraphNode & BrexNode { """ origin: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88381,9 +87276,7 @@ type BrexIntegrationRule implements OneGraphNode & BrexNode { """ type: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88410,9 +87303,7 @@ type BrexIntegrationRuleEvaluation implements OneGraphNode & BrexNode { """ value: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88514,9 +87405,7 @@ type BrexExternalIntegrationEntity implements OneGraphNode & BrexNode { """ vendorInternalId: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88551,9 +87440,7 @@ type BrexTransactionLens implements OneGraphNode & BrexNode { """ userCategory: BrexUserCategory - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88604,9 +87491,7 @@ type BrexCardAcceptor implements OneGraphNode & BrexNode { """ zip: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88678,10 +87563,8 @@ type BrexDepartment implements OneGraphNode & BrexNode { """ """ - 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! + users(last: Int, first: Int, before: String, after: String): BrexUserConnection + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88743,10 +87626,8 @@ type BrexLocation implements OneGraphNode & BrexNode { """ """ - 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! + users(last: Int, first: Int, before: String, after: String): BrexUserConnection + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88778,9 +87659,7 @@ type BrexMerchantCategory implements OneGraphNode & BrexNode { """ name: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88811,9 +87690,7 @@ type BrexMerchant implements OneGraphNode & BrexNode { """ website: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88836,9 +87713,7 @@ type BrexPerMerchantStats implements OneGraphNode & BrexNode { """ merchant: BrexMerchant - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88936,7 +87811,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 +87827,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 """ """ @@ -88961,9 +87836,7 @@ type BrexCard implements OneGraphNode & BrexNode { """ user: BrexUser - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89039,7 +87912,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 +87924,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 """ """ @@ -89060,9 +87933,7 @@ type BrexTransaction implements OneGraphNode & BrexNode { """ userCategory: BrexUserCategory - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89085,9 +87956,7 @@ type BrexRewardsTrigger implements OneGraphNode & BrexNode { """ name: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89110,9 +87979,7 @@ type BrexRewardsAccrualEntry implements OneGraphNode & BrexNode { """ rewardsTrigger: BrexRewardsTrigger - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89200,9 +88067,7 @@ type BrexRule implements OneGraphNode & BrexNode { """ user: BrexUser - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89232,7 +88097,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 """ """ @@ -89253,9 +88118,7 @@ type BrexTransactionOperation implements OneGraphNode & BrexNode { """ type: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89319,9 +88182,7 @@ type BrexCollectionAttempt implements OneGraphNode & BrexNode { """ status: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89383,11 +88244,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 """ @@ -89420,9 +88281,7 @@ type BrexStatement implements OneGraphNode & BrexNode { """ status: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89466,9 +88325,7 @@ type BrexUnderwritingAnalysisFlag implements OneGraphNode & BrexNode { """ name: BrexUnderwritingAnalysisFlagName! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89510,14 +88367,12 @@ 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 """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89540,9 +88395,7 @@ type BrexUnderwritingAccount implements OneGraphNode & BrexNode { """ status: BrexUnderwritingAccountStatus! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89607,9 +88460,7 @@ type BrexFundingSourceData implements OneGraphNode & BrexNode { """ routingNumber: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89652,9 +88503,7 @@ type BrexFundingSource implements OneGraphNode & BrexNode { """ type: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89742,7 +88591,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 +88635,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 +88647,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 +88683,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,14 +88699,12 @@ 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 """ """ incorporationState: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89887,11 +88734,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 +88782,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 +88803,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 """ """ @@ -89960,9 +88812,7 @@ type BrexUser implements OneGraphNode & BrexNode { """ status: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90026,9 +88876,7 @@ type BrexCredential implements OneGraphNode & BrexNode { """ vendor: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90139,7 +88987,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 +88995,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,14 +89023,12 @@ 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 """ """ vendor: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90224,7 +89070,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 """ """ @@ -90237,9 +89083,7 @@ type BrexUserCategory implements OneGraphNode & BrexNode { """ vendorInternalId: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90333,261 +89177,175 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ Fetches an object given its globally unique `ID`. """ - node(""" - The globally unique `ID`. - """ nodeId: ID!): CrunchbaseNode + node(nodeId: ID!): CrunchbaseNode """ Reads and enables pagination through a set of `Acquisition`. """ - acquisitions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseAcquisitionFilter """ - The method to use when ordering `Acquisition`. - """ orderBy: [CrunchbaseAcquisitionsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseAcquisitionsConnection + acquisitions( + filter: CrunchbaseAcquisitionFilter + orderBy: [CrunchbaseAcquisitionsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseAcquisitionsConnection """ Reads and enables pagination through a set of `Address`. """ - addresses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseAddressFilter """ - The method to use when ordering `Address`. - """ orderBy: [CrunchbaseAddressesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseAddressesConnection + addresses( + filter: CrunchbaseAddressFilter + orderBy: [CrunchbaseAddressesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseAddressesConnection """ Reads and enables pagination through a set of `Category`. """ - categories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseCategoryFilter """ - The method to use when ordering `Category`. - """ orderBy: [CrunchbaseCategoriesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseCategoriesConnection + categories( + filter: CrunchbaseCategoryFilter + orderBy: [CrunchbaseCategoriesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseCategoriesConnection """ Reads and enables pagination through a set of `Degree`. """ - degrees(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseDegreeFilter """ - The method to use when ordering `Degree`. - """ orderBy: [CrunchbaseDegreesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseDegreesConnection + degrees( + filter: CrunchbaseDegreeFilter + orderBy: [CrunchbaseDegreesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseDegreesConnection """ Reads and enables pagination through a set of `Fund`. """ - funds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundFilter """ - The method to use when ordering `Fund`. - """ orderBy: [CrunchbaseFundsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseFundsConnection + funds( + filter: CrunchbaseFundFilter + orderBy: [CrunchbaseFundsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseFundsConnection """ Reads and enables pagination through a set of `FundingRound`. """ - fundingRounds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundingRoundFilter """ - The method to use when ordering `FundingRound`. - """ orderBy: [CrunchbaseFundingRoundsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseFundingRoundsConnection + fundingRounds( + filter: CrunchbaseFundingRoundFilter + orderBy: [CrunchbaseFundingRoundsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseFundingRoundsConnection """ Reads and enables pagination through a set of `Image`. """ - images(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseImageFilter """ - The method to use when ordering `Image`. - """ orderBy: [CrunchbaseImagesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseImagesConnection + images( + filter: CrunchbaseImageFilter + orderBy: [CrunchbaseImagesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseImagesConnection """ Reads and enables pagination through a set of `Investment`. """ - investments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseInvestmentFilter """ - The method to use when ordering `Investment`. - """ orderBy: [CrunchbaseInvestmentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseInvestmentsConnection + investments( + filter: CrunchbaseInvestmentFilter + orderBy: [CrunchbaseInvestmentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseInvestmentsConnection """ Reads and enables pagination through a set of `Ipo`. """ - ipos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseIpoFilter """ - The method to use when ordering `Ipo`. - """ orderBy: [CrunchbaseIposOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseIposConnection + ipos( + filter: CrunchbaseIpoFilter + orderBy: [CrunchbaseIposOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseIposConnection """ Reads and enables pagination through a set of `Job`. """ - jobs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ - The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseJobsConnection + jobs( + filter: CrunchbaseJobFilter + orderBy: [CrunchbaseJobsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseJobsConnection """ Reads and enables pagination through a set of `Location`. """ - locations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseLocationFilter """ - The method to use when ordering `Location`. - """ orderBy: [CrunchbaseLocationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseLocationsConnection + locations( + filter: CrunchbaseLocationFilter + orderBy: [CrunchbaseLocationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseLocationsConnection """ Reads and enables pagination through a set of `Organization`. """ - organizations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ - The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseOrganizationsConnection + organizations( + filter: CrunchbaseOrganizationFilter + orderBy: [CrunchbaseOrganizationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseOrganizationsConnection """ Reads and enables pagination through a set of `Person`. """ - people(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ - The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbasePeopleConnection + people( + filter: CrunchbasePersonFilter + orderBy: [CrunchbasePeopleOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbasePeopleConnection """ Reads and enables pagination through a set of `SyncState`. """ - syncStates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseSyncStateFilter """ - The method to use when ordering `SyncState`. - """ orderBy: [CrunchbaseSyncStatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseSyncStatesConnection + syncStates( + filter: CrunchbaseSyncStateFilter + orderBy: [CrunchbaseSyncStatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseSyncStatesConnection """ """ @@ -90647,90 +89405,60 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ Reads a single `Acquisition` using its globally unique `ID`. """ - acquisition(""" - The globally unique `ID` to be used in selecting a single `Acquisition`. - """ nodeId: ID!): CrunchbaseAcquisition + acquisition(nodeId: ID!): CrunchbaseAcquisition """ Reads a single `Address` using its globally unique `ID`. """ - address(""" - The globally unique `ID` to be used in selecting a single `Address`. - """ nodeId: ID!): CrunchbaseAddress + address(nodeId: ID!): CrunchbaseAddress """ Reads a single `Category` using its globally unique `ID`. """ - category(""" - The globally unique `ID` to be used in selecting a single `Category`. - """ nodeId: ID!): CrunchbaseCategory + category(nodeId: ID!): CrunchbaseCategory """ Reads a single `Degree` using its globally unique `ID`. """ - degree(""" - The globally unique `ID` to be used in selecting a single `Degree`. - """ nodeId: ID!): CrunchbaseDegree + degree(nodeId: ID!): CrunchbaseDegree """ Reads a single `Fund` using its globally unique `ID`. """ - fund(""" - The globally unique `ID` to be used in selecting a single `Fund`. - """ nodeId: ID!): CrunchbaseFund + fund(nodeId: ID!): CrunchbaseFund """ Reads a single `FundingRound` using its globally unique `ID`. """ - fundingRound(""" - The globally unique `ID` to be used in selecting a single `FundingRound`. - """ nodeId: ID!): CrunchbaseFundingRound + fundingRound(nodeId: ID!): CrunchbaseFundingRound """ Reads a single `Image` using its globally unique `ID`. """ - image(""" - The globally unique `ID` to be used in selecting a single `Image`. - """ nodeId: ID!): CrunchbaseImage + image(nodeId: ID!): CrunchbaseImage """ Reads a single `Investment` using its globally unique `ID`. """ - investment(""" - The globally unique `ID` to be used in selecting a single `Investment`. - """ nodeId: ID!): CrunchbaseInvestment + investment(nodeId: ID!): CrunchbaseInvestment """ Reads a single `Ipo` using its globally unique `ID`. """ - ipo(""" - The globally unique `ID` to be used in selecting a single `Ipo`. - """ nodeId: ID!): CrunchbaseIpo + ipo(nodeId: ID!): CrunchbaseIpo """ Reads a single `Job` using its globally unique `ID`. """ - job(""" - The globally unique `ID` to be used in selecting a single `Job`. - """ nodeId: ID!): CrunchbaseJob + job(nodeId: ID!): CrunchbaseJob """ Reads a single `Location` using its globally unique `ID`. """ - location(""" - The globally unique `ID` to be used in selecting a single `Location`. - """ nodeId: ID!): CrunchbaseLocation + location(nodeId: ID!): CrunchbaseLocation """ Reads a single `Organization` using its globally unique `ID`. """ - organization(""" - The globally unique `ID` to be used in selecting a single `Organization`. - """ nodeId: ID!): CrunchbaseOrganization + organization(nodeId: ID!): CrunchbaseOrganization """ Reads a single `Person` using its globally unique `ID`. """ - person(""" - The globally unique `ID` to be used in selecting a single `Person`. - """ nodeId: ID!): CrunchbasePerson + person(nodeId: ID!): CrunchbasePerson """ Reads a single `SyncState` using its globally unique `ID`. """ - syncState(""" - The globally unique `ID` to be used in selecting a single `SyncState`. - """ nodeId: ID!): CrunchbaseSyncState - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + syncState(nodeId: ID!): CrunchbaseSyncState + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91241,9 +89969,7 @@ type CrunchbaseIpo implements OneGraphNode & CrunchbaseNode { Reads a single `Organization` that is related to this `Ipo`. """ fundedCompany: CrunchbaseOrganization - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91488,9 +90214,7 @@ type CrunchbaseAcquisition implements OneGraphNode & CrunchbaseNode { Reads a single `Organization` that is related to this `Acquisition`. """ acquiree: CrunchbaseOrganization - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91720,60 +90444,40 @@ type CrunchbaseAddress implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Organization`. """ - organizationsHeadquartered(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ - The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseOrganizationsConnection! + organizationsHeadquartered( + filter: CrunchbaseOrganizationFilter + orderBy: [CrunchbaseOrganizationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Image`. """ - images(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseImageFilter """ - The method to use when ordering `Image`. - """ orderBy: [CrunchbaseImagesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseImagesConnection! + images( + filter: CrunchbaseImageFilter + orderBy: [CrunchbaseImagesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseImagesConnection! """ Reads and enables pagination through a set of `Organization`. """ - organizationsWithOffice(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ - The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseOrganizationsConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + organizationsWithOffice( + filter: CrunchbaseOrganizationFilter + orderBy: [CrunchbaseOrganizationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseOrganizationsConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -92225,42 +90929,28 @@ type CrunchbaseFund implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Organization`. """ - fundInvestorOrganizations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ - The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseOrganizationsConnection! + fundInvestorOrganizations( + filter: CrunchbaseOrganizationFilter + orderBy: [CrunchbaseOrganizationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Person`. """ - fundInvestorPeople(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ - The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbasePeopleConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + fundInvestorPeople( + filter: CrunchbasePersonFilter + orderBy: [CrunchbasePeopleOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbasePeopleConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -92528,60 +91218,40 @@ type CrunchbaseFundingRound implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Investment`. """ - investments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseInvestmentFilter """ - The method to use when ordering `Investment`. - """ orderBy: [CrunchbaseInvestmentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseInvestmentsConnection! + investments( + filter: CrunchbaseInvestmentFilter + orderBy: [CrunchbaseInvestmentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseInvestmentsConnection! """ Reads and enables pagination through a set of `Person`. """ - peopleInvestedIn(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ - The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbasePeopleConnection! + peopleInvestedIn( + filter: CrunchbasePersonFilter + orderBy: [CrunchbasePeopleOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbasePeopleConnection! """ Reads and enables pagination through a set of `Organization`. """ - organizationsInvestedIn(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ - The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseOrganizationsConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + organizationsInvestedIn( + filter: CrunchbaseOrganizationFilter + orderBy: [CrunchbaseOrganizationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseOrganizationsConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -92659,60 +91329,40 @@ type CrunchbaseInvestment implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Organization`. """ - investorOrganizations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ - The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseOrganizationsConnection! + investorOrganizations( + filter: CrunchbaseOrganizationFilter + orderBy: [CrunchbaseOrganizationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Person`. """ - investorPeople(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ - The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbasePeopleConnection! + investorPeople( + filter: CrunchbasePersonFilter + orderBy: [CrunchbasePeopleOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbasePeopleConnection! """ Reads and enables pagination through a set of `Person`. """ - investmentPartners(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ - The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbasePeopleConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + investmentPartners( + filter: CrunchbasePersonFilter + orderBy: [CrunchbasePeopleOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbasePeopleConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -92859,9 +91509,7 @@ type CrunchbaseJob implements OneGraphNode & CrunchbaseNode { Reads a single `Organization` that is related to this `Job`. """ organization: CrunchbaseOrganization - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -92992,9 +91640,7 @@ type CrunchbaseDegree implements OneGraphNode & CrunchbaseNode { Reads a single `Person` that is related to this `Degree`. """ person: CrunchbasePerson - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -93240,42 +91886,28 @@ type CrunchbaseLocation implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Location`. """ - subLocations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseLocationFilter """ - The method to use when ordering `Location`. - """ orderBy: [CrunchbaseLocationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseLocationsConnection! + subLocations( + filter: CrunchbaseLocationFilter + orderBy: [CrunchbaseLocationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseLocationsConnection! """ Reads and enables pagination through a set of `Person`. """ - peopleByPrimaryLocationId(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ - The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbasePeopleConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + peopleByPrimaryLocationId( + filter: CrunchbasePersonFilter + orderBy: [CrunchbasePeopleOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbasePeopleConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -93397,276 +92029,184 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Degree`. """ - degrees(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseDegreeFilter """ - The method to use when ordering `Degree`. - """ orderBy: [CrunchbaseDegreesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseDegreesConnection! + degrees( + filter: CrunchbaseDegreeFilter + orderBy: [CrunchbaseDegreesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseDegreesConnection! """ Reads and enables pagination through a set of `Job`. """ - jobs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ - The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseJobsConnection! + jobs( + filter: CrunchbaseJobFilter + orderBy: [CrunchbaseJobsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseJobsConnection! """ Reads and enables pagination through a set of `Investment`. """ - investmentsAsInvestee(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseInvestmentFilter """ - The method to use when ordering `Investment`. - """ orderBy: [CrunchbaseInvestmentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseInvestmentsConnection! + investmentsAsInvestee( + filter: CrunchbaseInvestmentFilter + orderBy: [CrunchbaseInvestmentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseInvestmentsConnection! """ Reads and enables pagination through a set of `FundInvestor`. """ - fundInvestors(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundInvestorFilter """ - The method to use when ordering `FundInvestor`. - """ orderBy: [CrunchbaseFundInvestorsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseFundInvestorsConnection! + fundInvestors( + filter: CrunchbaseFundInvestorFilter + orderBy: [CrunchbaseFundInvestorsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseFundInvestorsConnection! """ Reads and enables pagination through a set of `Organization`. """ - graduatedSchools(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ - The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseOrganizationsConnection! + graduatedSchools( + filter: CrunchbaseOrganizationFilter + orderBy: [CrunchbaseOrganizationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Organization`. """ - organizationsByJobs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ - The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseOrganizationsConnection! + organizationsByJobs( + filter: CrunchbaseOrganizationFilter + orderBy: [CrunchbaseOrganizationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `FundingRound`. """ - fundingRoundsAsInvestee(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundingRoundFilter """ - The method to use when ordering `FundingRound`. - """ orderBy: [CrunchbaseFundingRoundsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseFundingRoundsConnection! + fundingRoundsAsInvestee( + filter: CrunchbaseFundingRoundFilter + orderBy: [CrunchbaseFundingRoundsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseFundingRoundsConnection! """ Reads and enables pagination through a set of `Organization`. """ - organizationsInvestedIn(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ - The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseOrganizationsConnection! + organizationsInvestedIn( + filter: CrunchbaseOrganizationFilter + orderBy: [CrunchbaseOrganizationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Organization`. """ - foundedOrganizations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ - The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseOrganizationsConnection! + foundedOrganizations( + filter: CrunchbaseOrganizationFilter + orderBy: [CrunchbaseOrganizationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Investment`. """ - investmentsAsInvestor(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseInvestmentFilter """ - The method to use when ordering `Investment`. - """ orderBy: [CrunchbaseInvestmentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseInvestmentsConnection! + investmentsAsInvestor( + filter: CrunchbaseInvestmentFilter + orderBy: [CrunchbaseInvestmentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseInvestmentsConnection! """ Reads and enables pagination through a set of `Organization`. """ - investorOrganizations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ - The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseOrganizationsConnection! + investorOrganizations( + filter: CrunchbaseOrganizationFilter + orderBy: [CrunchbaseOrganizationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Investment`. """ - investmentsAsPartner(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseInvestmentFilter """ - The method to use when ordering `Investment`. - """ orderBy: [CrunchbaseInvestmentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseInvestmentsConnection! + investmentsAsPartner( + filter: CrunchbaseInvestmentFilter + orderBy: [CrunchbaseInvestmentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseInvestmentsConnection! """ Reads and enables pagination through a set of `Job`. """ - advisorRoleJobs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ - The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseJobsConnection! + advisorRoleJobs( + filter: CrunchbaseJobFilter + orderBy: [CrunchbaseJobsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseJobsConnection! """ Reads and enables pagination through a set of `Fund`. """ - investedInFunds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundFilter """ - The method to use when ordering `Fund`. - """ orderBy: [CrunchbaseFundsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseFundsConnection! + investedInFunds( + filter: CrunchbaseFundFilter + orderBy: [CrunchbaseFundsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseFundsConnection! """ Reads and enables pagination through a set of `Organization`. """ - fundInvestorOrganizations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ - The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseOrganizationsConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + fundInvestorOrganizations( + filter: CrunchbaseOrganizationFilter + orderBy: [CrunchbaseOrganizationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseOrganizationsConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -97969,42 +96509,28 @@ type CrunchbaseImage implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Organization`. """ - organizations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ - The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseOrganizationsConnection! + organizations( + filter: CrunchbaseOrganizationFilter + orderBy: [CrunchbaseOrganizationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Person`. """ - peopleByPrimaryImageId(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ - The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbasePeopleConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + peopleByPrimaryImageId( + filter: CrunchbasePersonFilter + orderBy: [CrunchbasePeopleOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbasePeopleConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -98267,147 +96793,99 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Degree`. """ - degreesIssued(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseDegreeFilter """ - The method to use when ordering `Degree`. - """ orderBy: [CrunchbaseDegreesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseDegreesConnection! + degreesIssued( + filter: CrunchbaseDegreeFilter + orderBy: [CrunchbaseDegreesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseDegreesConnection! """ Reads and enables pagination through a set of `Job`. """ - jobs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ - The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseJobsConnection! + jobs( + filter: CrunchbaseJobFilter + orderBy: [CrunchbaseJobsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseJobsConnection! """ Reads and enables pagination through a set of `Fund`. """ - ventureFirmFunds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundFilter """ - The method to use when ordering `Fund`. - """ orderBy: [CrunchbaseFundsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseFundsConnection! + ventureFirmFunds( + filter: CrunchbaseFundFilter + orderBy: [CrunchbaseFundsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseFundsConnection! """ Reads and enables pagination through a set of `FundingRound`. """ - fundingRounds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundingRoundFilter """ - The method to use when ordering `FundingRound`. - """ orderBy: [CrunchbaseFundingRoundsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseFundingRoundsConnection! + fundingRounds( + filter: CrunchbaseFundingRoundFilter + orderBy: [CrunchbaseFundingRoundsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseFundingRoundsConnection! """ Reads and enables pagination through a set of `Investment`. """ - investmentsAsInvestee(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseInvestmentFilter """ - The method to use when ordering `Investment`. - """ orderBy: [CrunchbaseInvestmentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseInvestmentsConnection! + investmentsAsInvestee( + filter: CrunchbaseInvestmentFilter + orderBy: [CrunchbaseInvestmentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseInvestmentsConnection! """ Reads and enables pagination through a set of `Acquisition`. """ - acquisitionsAsAcquirer(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseAcquisitionFilter """ - The method to use when ordering `Acquisition`. - """ orderBy: [CrunchbaseAcquisitionsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseAcquisitionsConnection! + acquisitionsAsAcquirer( + filter: CrunchbaseAcquisitionFilter + orderBy: [CrunchbaseAcquisitionsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseAcquisitionsConnection! """ Reads and enables pagination through a set of `Acquisition`. """ - acquisitionsAsAcquiree(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseAcquisitionFilter """ - The method to use when ordering `Acquisition`. - """ orderBy: [CrunchbaseAcquisitionsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseAcquisitionsConnection! + acquisitionsAsAcquiree( + filter: CrunchbaseAcquisitionFilter + orderBy: [CrunchbaseAcquisitionsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseAcquisitionsConnection! """ Reads and enables pagination through a set of `Ipo`. """ - ipos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseIpoFilter """ - The method to use when ordering `Ipo`. - """ orderBy: [CrunchbaseIposOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseIposConnection! + ipos( + filter: CrunchbaseIpoFilter + orderBy: [CrunchbaseIposOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseIposConnection! """ """ @@ -98427,276 +96905,184 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Address`. """ - offices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseAddressFilter """ - The method to use when ordering `Address`. - """ orderBy: [CrunchbaseAddressesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseAddressesConnection! + offices( + filter: CrunchbaseAddressFilter + orderBy: [CrunchbaseAddressesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseAddressesConnection! """ Reads and enables pagination through a set of `Person`. """ - degreeHolders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ - The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbasePeopleConnection! + degreeHolders( + filter: CrunchbasePersonFilter + orderBy: [CrunchbasePeopleOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbasePeopleConnection! """ Reads and enables pagination through a set of `Person`. """ - peopleByJobs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ - The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbasePeopleConnection! + peopleByJobs( + filter: CrunchbasePersonFilter + orderBy: [CrunchbasePeopleOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbasePeopleConnection! """ Reads and enables pagination through a set of `FundingRound`. """ - fundingRoundsAsInvestee(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundingRoundFilter """ - The method to use when ordering `FundingRound`. - """ orderBy: [CrunchbaseFundingRoundsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseFundingRoundsConnection! + fundingRoundsAsInvestee( + filter: CrunchbaseFundingRoundFilter + orderBy: [CrunchbaseFundingRoundsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseFundingRoundsConnection! """ Reads and enables pagination through a set of `Person`. """ - peopleInvestedIn(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ - The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbasePeopleConnection! + peopleInvestedIn( + filter: CrunchbasePersonFilter + orderBy: [CrunchbasePeopleOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbasePeopleConnection! """ Reads and enables pagination through a set of `Person`. """ - founders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ - The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbasePeopleConnection! + founders( + filter: CrunchbasePersonFilter + orderBy: [CrunchbasePeopleOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbasePeopleConnection! """ Reads and enables pagination through a set of `Job`. """ - currentTeamJobs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ - The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseJobsConnection! + currentTeamJobs( + filter: CrunchbaseJobFilter + orderBy: [CrunchbaseJobsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseJobsConnection! """ Reads and enables pagination through a set of `Job`. """ - featuredTeamJobs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ - The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseJobsConnection! + featuredTeamJobs( + filter: CrunchbaseJobFilter + orderBy: [CrunchbaseJobsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseJobsConnection! """ Reads and enables pagination through a set of `Job`. """ - pastTeamJobs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ - The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseJobsConnection! + pastTeamJobs( + filter: CrunchbaseJobFilter + orderBy: [CrunchbaseJobsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseJobsConnection! """ Reads and enables pagination through a set of `Job`. """ - boardAndAdvisorJobs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseJobFilter """ - The method to use when ordering `Job`. - """ orderBy: [CrunchbaseJobsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseJobsConnection! + boardAndAdvisorJobs( + filter: CrunchbaseJobFilter + orderBy: [CrunchbaseJobsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseJobsConnection! """ Reads and enables pagination through a set of `Investment`. """ - investmentsAsInvestor(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseInvestmentFilter """ - The method to use when ordering `Investment`. - """ orderBy: [CrunchbaseInvestmentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseInvestmentsConnection! + investmentsAsInvestor( + filter: CrunchbaseInvestmentFilter + orderBy: [CrunchbaseInvestmentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseInvestmentsConnection! """ Reads and enables pagination through a set of `Person`. """ - investorPeople(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ - The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbasePeopleConnection! + investorPeople( + filter: CrunchbasePersonFilter + orderBy: [CrunchbasePeopleOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbasePeopleConnection! """ Reads and enables pagination through a set of `Category`. """ - categories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseCategoryFilter """ - The method to use when ordering `Category`. - """ orderBy: [CrunchbaseCategoriesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseCategoriesConnection! + categories( + filter: CrunchbaseCategoryFilter + orderBy: [CrunchbaseCategoriesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseCategoriesConnection! """ Reads and enables pagination through a set of `Fund`. """ - investedInFunds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseFundFilter """ - The method to use when ordering `Fund`. - """ orderBy: [CrunchbaseFundsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseFundsConnection! + investedInFunds( + filter: CrunchbaseFundFilter + orderBy: [CrunchbaseFundsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseFundsConnection! """ Reads and enables pagination through a set of `Person`. """ - fundInvestorPeople(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbasePersonFilter """ - The method to use when ordering `Person`. - """ orderBy: [CrunchbasePeopleOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbasePeopleConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + fundInvestorPeople( + filter: CrunchbasePersonFilter + orderBy: [CrunchbasePeopleOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbasePeopleConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -98764,24 +97150,16 @@ type CrunchbaseCategory implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Organization`. """ - organizations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: CrunchbaseOrganizationFilter """ - The method to use when ordering `Organization`. - """ orderBy: [CrunchbaseOrganizationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): CrunchbaseOrganizationsConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + organizations( + filter: CrunchbaseOrganizationFilter + orderBy: [CrunchbaseOrganizationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): CrunchbaseOrganizationsConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -98814,9 +97192,7 @@ type CrunchbaseSyncState implements OneGraphNode & CrunchbaseNode { """ lastUpdatedAt: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -100243,21 +98619,15 @@ type QuickbooksBillPaymentLineItem { """ Reads and enables pagination through a set of `BillPaymentLineItemTransaction`. """ - linkedTransactions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentLineItemTransactionFilter """ - The method to use when ordering `BillPaymentLineItemTransaction`. - """ orderBy: [QuickbooksBillPaymentLineItemTransactionsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillPaymentLineItemTransactionsConnection! + linkedTransactions( + filter: QuickbooksBillPaymentLineItemTransactionFilter + orderBy: [QuickbooksBillPaymentLineItemTransactionsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillPaymentLineItemTransactionsConnection! } """ @@ -102405,621 +100775,415 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ Fetches an object given its globally unique `ID`. """ - node(""" - The globally unique `ID`. - """ nodeId: ID!): QuickbooksNode + node(nodeId: ID!): QuickbooksNode """ Reads and enables pagination through a set of `Account`. """ - accounts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksAccountFilter """ - The method to use when ordering `Account`. - """ orderBy: [QuickbooksAccountsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksAccountsConnection + accounts( + filter: QuickbooksAccountFilter + orderBy: [QuickbooksAccountsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksAccountsConnection """ Reads and enables pagination through a set of `Bill`. """ - bills(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillFilter """ - The method to use when ordering `Bill`. - """ orderBy: [QuickbooksBillsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillsConnection + bills( + filter: QuickbooksBillFilter + orderBy: [QuickbooksBillsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillsConnection """ Reads and enables pagination through a set of `BillPayment`. """ - billPayments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ - The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillPaymentsConnection + billPayments( + filter: QuickbooksBillPaymentFilter + orderBy: [QuickbooksBillPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillPaymentsConnection """ Reads and enables pagination through a set of `Class`. """ - classes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksClassFilter """ - The method to use when ordering `Class`. - """ orderBy: [QuickbooksClassesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksClassesConnection + classes( + filter: QuickbooksClassFilter + orderBy: [QuickbooksClassesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksClassesConnection """ Reads and enables pagination through a set of `CompanyInfo`. """ - companyInfos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCompanyInfoFilter """ - The method to use when ordering `CompanyInfo`. - """ orderBy: [QuickbooksCompanyInfosOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCompanyInfosConnection + companyInfos( + filter: QuickbooksCompanyInfoFilter + orderBy: [QuickbooksCompanyInfosOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCompanyInfosConnection """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ - The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCreditMemosConnection + creditMemos( + filter: QuickbooksCreditMemoFilter + orderBy: [QuickbooksCreditMemosOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCreditMemosConnection """ Reads and enables pagination through a set of `Currency`. """ - currencies(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCurrencyFilter """ - The method to use when ordering `Currency`. - """ orderBy: [QuickbooksCurrenciesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCurrenciesConnection + currencies( + filter: QuickbooksCurrencyFilter + orderBy: [QuickbooksCurrenciesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCurrenciesConnection """ Reads and enables pagination through a set of `Customer`. """ - customers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ - The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCustomersConnection + customers( + filter: QuickbooksCustomerFilter + orderBy: [QuickbooksCustomersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCustomersConnection """ Reads and enables pagination through a set of `Department`. """ - departments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepartmentFilter """ - The method to use when ordering `Department`. - """ orderBy: [QuickbooksDepartmentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksDepartmentsConnection + departments( + filter: QuickbooksDepartmentFilter + orderBy: [QuickbooksDepartmentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksDepartmentsConnection """ Reads and enables pagination through a set of `Deposit`. """ - deposits(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositFilter """ - The method to use when ordering `Deposit`. - """ orderBy: [QuickbooksDepositsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksDepositsConnection + deposits( + filter: QuickbooksDepositFilter + orderBy: [QuickbooksDepositsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksDepositsConnection """ Reads and enables pagination through a set of `Employee`. """ - employees(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEmployeeFilter """ - The method to use when ordering `Employee`. - """ orderBy: [QuickbooksEmployeesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEmployeesConnection + employees( + filter: QuickbooksEmployeeFilter + orderBy: [QuickbooksEmployeesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEmployeesConnection """ Reads and enables pagination through a set of `Estimate`. """ - estimates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ - The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEstimatesConnection + estimates( + filter: QuickbooksEstimateFilter + orderBy: [QuickbooksEstimatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEstimatesConnection """ 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 """ - The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoicesConnection + invoices( + filter: QuickbooksInvoiceFilter + orderBy: [QuickbooksInvoicesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoicesConnection """ Reads and enables pagination through a set of `Item`. """ - items(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ - The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksItemsConnection + items( + filter: QuickbooksItemFilter + orderBy: [QuickbooksItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksItemsConnection """ Reads and enables pagination through a set of `JournalCode`. """ - journalCodes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksJournalCodeFilter """ - The method to use when ordering `JournalCode`. - """ orderBy: [QuickbooksJournalCodesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksJournalCodesConnection + journalCodes( + filter: QuickbooksJournalCodeFilter + orderBy: [QuickbooksJournalCodesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksJournalCodesConnection """ Reads and enables pagination through a set of `JournalEntry`. """ - journalEntries(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksJournalEntryFilter """ - The method to use when ordering `JournalEntry`. - """ orderBy: [QuickbooksJournalEntriesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksJournalEntriesConnection + journalEntries( + filter: QuickbooksJournalEntryFilter + orderBy: [QuickbooksJournalEntriesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksJournalEntriesConnection """ Reads and enables pagination through a set of `Payment`. """ - payments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentFilter """ - The method to use when ordering `Payment`. - """ orderBy: [QuickbooksPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPaymentsConnection + payments( + filter: QuickbooksPaymentFilter + orderBy: [QuickbooksPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPaymentsConnection """ Reads and enables pagination through a set of `PaymentMethod`. """ - paymentMethods(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentMethodFilter """ - The method to use when ordering `PaymentMethod`. - """ orderBy: [QuickbooksPaymentMethodsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPaymentMethodsConnection + paymentMethods( + filter: QuickbooksPaymentMethodFilter + orderBy: [QuickbooksPaymentMethodsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPaymentMethodsConnection """ Reads and enables pagination through a set of `PhysicalAddress`. """ - physicalAddresses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPhysicalAddressFilter """ - The method to use when ordering `PhysicalAddress`. - """ orderBy: [QuickbooksPhysicalAddressesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPhysicalAddressesConnection + physicalAddresses( + filter: QuickbooksPhysicalAddressFilter + orderBy: [QuickbooksPhysicalAddressesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPhysicalAddressesConnection """ Reads and enables pagination through a set of `Purchase`. """ - purchases(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ - The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPurchasesConnection + purchases( + filter: QuickbooksPurchaseFilter + orderBy: [QuickbooksPurchasesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPurchasesConnection """ Reads and enables pagination through a set of `PurchaseLineItem`. """ - purchaseLineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseLineItemFilter """ - The method to use when ordering `PurchaseLineItem`. - """ orderBy: [QuickbooksPurchaseLineItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPurchaseLineItemsConnection + purchaseLineItems( + filter: QuickbooksPurchaseLineItemFilter + orderBy: [QuickbooksPurchaseLineItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPurchaseLineItemsConnection """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ - The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksRefundReceiptsConnection + refundReceipts( + filter: QuickbooksRefundReceiptFilter + orderBy: [QuickbooksRefundReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksRefundReceiptsConnection """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ - The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksSalesReceiptsConnection + salesReceipts( + filter: QuickbooksSalesReceiptFilter + orderBy: [QuickbooksSalesReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksSalesReceiptsConnection """ Reads and enables pagination through a set of `SalesTaxRateDetail`. """ - salesTaxRateDetails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesTaxRateDetailFilter """ - The method to use when ordering `SalesTaxRateDetail`. - """ orderBy: [QuickbooksSalesTaxRateDetailsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksSalesTaxRateDetailsConnection + salesTaxRateDetails( + filter: QuickbooksSalesTaxRateDetailFilter + orderBy: [QuickbooksSalesTaxRateDetailsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksSalesTaxRateDetailsConnection """ Reads and enables pagination through a set of `TaxAgency`. """ - taxAgencies(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxAgencyFilter """ - The method to use when ordering `TaxAgency`. - """ orderBy: [QuickbooksTaxAgenciesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTaxAgenciesConnection + taxAgencies( + filter: QuickbooksTaxAgencyFilter + orderBy: [QuickbooksTaxAgenciesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTaxAgenciesConnection """ Reads and enables pagination through a set of `TaxClassification`. """ - taxClassifications(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxClassificationFilter """ - The method to use when ordering `TaxClassification`. - """ orderBy: [QuickbooksTaxClassificationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTaxClassificationsConnection + taxClassifications( + filter: QuickbooksTaxClassificationFilter + orderBy: [QuickbooksTaxClassificationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTaxClassificationsConnection """ Reads and enables pagination through a set of `TaxCode`. """ - taxCodes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxCodeFilter """ - The method to use when ordering `TaxCode`. - """ orderBy: [QuickbooksTaxCodesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTaxCodesConnection + taxCodes( + filter: QuickbooksTaxCodeFilter + orderBy: [QuickbooksTaxCodesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTaxCodesConnection """ Reads and enables pagination through a set of `TaxExemptionReason`. """ - taxExemptionReasons(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxExemptionReasonFilter """ - The method to use when ordering `TaxExemptionReason`. - """ orderBy: [QuickbooksTaxExemptionReasonsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTaxExemptionReasonsConnection + taxExemptionReasons( + filter: QuickbooksTaxExemptionReasonFilter + orderBy: [QuickbooksTaxExemptionReasonsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTaxExemptionReasonsConnection """ Reads and enables pagination through a set of `TaxRate`. """ - taxRates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxRateFilter """ - The method to use when ordering `TaxRate`. - """ orderBy: [QuickbooksTaxRatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTaxRatesConnection + taxRates( + filter: QuickbooksTaxRateFilter + orderBy: [QuickbooksTaxRatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTaxRatesConnection """ Reads and enables pagination through a set of `Term`. """ - terms(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTermFilter """ - The method to use when ordering `Term`. - """ orderBy: [QuickbooksTermsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTermsConnection + terms( + filter: QuickbooksTermFilter + orderBy: [QuickbooksTermsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTermsConnection """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ - The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTimeActivitiesConnection + timeActivities( + filter: QuickbooksTimeActivityFilter + orderBy: [QuickbooksTimeActivitiesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTimeActivitiesConnection """ Reads and enables pagination through a set of `Transfer`. """ - transfers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransferFilter """ - The method to use when ordering `Transfer`. - """ orderBy: [QuickbooksTransfersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTransfersConnection + transfers( + filter: QuickbooksTransferFilter + orderBy: [QuickbooksTransfersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTransfersConnection """ Reads and enables pagination through a set of `Uqc`. """ - uqcs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksUqcFilter """ - The method to use when ordering `Uqc`. - """ orderBy: [QuickbooksUqcsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksUqcsConnection + uqcs( + filter: QuickbooksUqcFilter + orderBy: [QuickbooksUqcsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksUqcsConnection """ Reads and enables pagination through a set of `Vendor`. """ - vendors(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksVendorFilter """ - The method to use when ordering `Vendor`. - """ orderBy: [QuickbooksVendorsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksVendorsConnection + vendors( + filter: QuickbooksVendorFilter + orderBy: [QuickbooksVendorsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksVendorsConnection """ """ @@ -103035,211 +101199,147 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ Reads a single `Account` using its globally unique `ID`. """ - account(""" - The globally unique `ID` to be used in selecting a single `Account`. - """ nodeId: ID!): QuickbooksAccount + account(nodeId: ID!): QuickbooksAccount """ Reads a single `Bill` using its globally unique `ID`. """ - bill(""" - The globally unique `ID` to be used in selecting a single `Bill`. - """ nodeId: ID!): QuickbooksBill + bill(nodeId: ID!): QuickbooksBill """ Reads a single `BillPayment` using its globally unique `ID`. """ - billPayment(""" - The globally unique `ID` to be used in selecting a single `BillPayment`. - """ nodeId: ID!): QuickbooksBillPayment + billPayment(nodeId: ID!): QuickbooksBillPayment """ Reads a single `Class` using its globally unique `ID`. """ - class(""" - The globally unique `ID` to be used in selecting a single `Class`. - """ nodeId: ID!): QuickbooksClass + class(nodeId: ID!): QuickbooksClass """ Reads a single `CompanyInfo` using its globally unique `ID`. """ - companyInfo(""" - The globally unique `ID` to be used in selecting a single `CompanyInfo`. - """ nodeId: ID!): QuickbooksCompanyInfo + companyInfo(nodeId: ID!): QuickbooksCompanyInfo """ Reads a single `CreditMemo` using its globally unique `ID`. """ - creditMemo(""" - The globally unique `ID` to be used in selecting a single `CreditMemo`. - """ nodeId: ID!): QuickbooksCreditMemo + creditMemo(nodeId: ID!): QuickbooksCreditMemo """ Reads a single `Currency` using its globally unique `ID`. """ - currency(""" - The globally unique `ID` to be used in selecting a single `Currency`. - """ nodeId: ID!): QuickbooksCurrency + currency(nodeId: ID!): QuickbooksCurrency """ Reads a single `Customer` using its globally unique `ID`. """ - customer(""" - The globally unique `ID` to be used in selecting a single `Customer`. - """ nodeId: ID!): QuickbooksCustomer + customer(nodeId: ID!): QuickbooksCustomer """ Reads a single `Department` using its globally unique `ID`. """ - department(""" - The globally unique `ID` to be used in selecting a single `Department`. - """ nodeId: ID!): QuickbooksDepartment + department(nodeId: ID!): QuickbooksDepartment """ Reads a single `Deposit` using its globally unique `ID`. """ - deposit(""" - The globally unique `ID` to be used in selecting a single `Deposit`. - """ nodeId: ID!): QuickbooksDeposit + deposit(nodeId: ID!): QuickbooksDeposit """ Reads a single `Employee` using its globally unique `ID`. """ - employee(""" - The globally unique `ID` to be used in selecting a single `Employee`. - """ nodeId: ID!): QuickbooksEmployee + employee(nodeId: ID!): QuickbooksEmployee """ Reads a single `Estimate` using its globally unique `ID`. """ - estimate(""" - The globally unique `ID` to be used in selecting a single `Estimate`. - """ nodeId: ID!): QuickbooksEstimate + estimate(nodeId: ID!): QuickbooksEstimate """ Reads a single `Invoice` using its globally unique `ID`. """ - invoice(""" - The globally unique `ID` to be used in selecting a single `Invoice`. - """ nodeId: ID!): QuickbooksInvoice + invoice(nodeId: ID!): QuickbooksInvoice """ Reads a single `Item` using its globally unique `ID`. """ - item(""" - The globally unique `ID` to be used in selecting a single `Item`. - """ nodeId: ID!): QuickbooksItem + item(nodeId: ID!): QuickbooksItem """ Reads a single `JournalCode` using its globally unique `ID`. """ - journalCode(""" - The globally unique `ID` to be used in selecting a single `JournalCode`. - """ nodeId: ID!): QuickbooksJournalCode + journalCode(nodeId: ID!): QuickbooksJournalCode """ Reads a single `JournalEntry` using its globally unique `ID`. """ - journalEntry(""" - The globally unique `ID` to be used in selecting a single `JournalEntry`. - """ nodeId: ID!): QuickbooksJournalEntry + journalEntry(nodeId: ID!): QuickbooksJournalEntry """ Reads a single `Payment` using its globally unique `ID`. """ - payment(""" - The globally unique `ID` to be used in selecting a single `Payment`. - """ nodeId: ID!): QuickbooksPayment + payment(nodeId: ID!): QuickbooksPayment """ Reads a single `PaymentMethod` using its globally unique `ID`. """ - paymentMethod(""" - The globally unique `ID` to be used in selecting a single `PaymentMethod`. - """ nodeId: ID!): QuickbooksPaymentMethod + paymentMethod(nodeId: ID!): QuickbooksPaymentMethod """ Reads a single `PhysicalAddress` using its globally unique `ID`. """ - physicalAddress(""" - The globally unique `ID` to be used in selecting a single `PhysicalAddress`. - """ nodeId: ID!): QuickbooksPhysicalAddress + physicalAddress(nodeId: ID!): QuickbooksPhysicalAddress """ Reads a single `Purchase` using its globally unique `ID`. """ - purchase(""" - The globally unique `ID` to be used in selecting a single `Purchase`. - """ nodeId: ID!): QuickbooksPurchase + purchase(nodeId: ID!): QuickbooksPurchase """ Reads a single `RefundReceipt` using its globally unique `ID`. """ - refundReceipt(""" - The globally unique `ID` to be used in selecting a single `RefundReceipt`. - """ nodeId: ID!): QuickbooksRefundReceipt + refundReceipt(nodeId: ID!): QuickbooksRefundReceipt """ Reads a single `SalesReceipt` using its globally unique `ID`. """ - salesReceipt(""" - The globally unique `ID` to be used in selecting a single `SalesReceipt`. - """ nodeId: ID!): QuickbooksSalesReceipt + salesReceipt(nodeId: ID!): QuickbooksSalesReceipt """ Reads a single `TaxAgency` using its globally unique `ID`. """ - taxAgency(""" - The globally unique `ID` to be used in selecting a single `TaxAgency`. - """ nodeId: ID!): QuickbooksTaxAgency + taxAgency(nodeId: ID!): QuickbooksTaxAgency """ Reads a single `TaxClassification` using its globally unique `ID`. """ - taxClassification(""" - The globally unique `ID` to be used in selecting a single `TaxClassification`. - """ nodeId: ID!): QuickbooksTaxClassification + taxClassification(nodeId: ID!): QuickbooksTaxClassification """ Reads a single `TaxCode` using its globally unique `ID`. """ - taxCode(""" - The globally unique `ID` to be used in selecting a single `TaxCode`. - """ nodeId: ID!): QuickbooksTaxCode + taxCode(nodeId: ID!): QuickbooksTaxCode """ Reads a single `TaxExemptionReason` using its globally unique `ID`. """ - taxExemptionReason(""" - The globally unique `ID` to be used in selecting a single `TaxExemptionReason`. - """ nodeId: ID!): QuickbooksTaxExemptionReason + taxExemptionReason(nodeId: ID!): QuickbooksTaxExemptionReason """ Reads a single `TaxRate` using its globally unique `ID`. """ - taxRate(""" - The globally unique `ID` to be used in selecting a single `TaxRate`. - """ nodeId: ID!): QuickbooksTaxRate + taxRate(nodeId: ID!): QuickbooksTaxRate """ Reads a single `Term` using its globally unique `ID`. """ - term(""" - The globally unique `ID` to be used in selecting a single `Term`. - """ nodeId: ID!): QuickbooksTerm + term(nodeId: ID!): QuickbooksTerm """ Reads a single `TimeActivity` using its globally unique `ID`. """ - timeActivity(""" - The globally unique `ID` to be used in selecting a single `TimeActivity`. - """ nodeId: ID!): QuickbooksTimeActivity + timeActivity(nodeId: ID!): QuickbooksTimeActivity """ Reads a single `Transfer` using its globally unique `ID`. """ - transfer(""" - The globally unique `ID` to be used in selecting a single `Transfer`. - """ nodeId: ID!): QuickbooksTransfer + transfer(nodeId: ID!): QuickbooksTransfer """ Reads a single `Uqc` using its globally unique `ID`. """ - uqc(""" - The globally unique `ID` to be used in selecting a single `Uqc`. - """ nodeId: ID!): QuickbooksUqc + uqc(nodeId: ID!): QuickbooksUqc """ Reads a single `Vendor` using its globally unique `ID`. """ - vendor(""" - The globally unique `ID` to be used in selecting a single `Vendor`. - """ nodeId: ID!): QuickbooksVendor + vendor(nodeId: ID!): QuickbooksVendor """ """ - 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,110 +101347,108 @@ 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 """ """ realm(realmId: String): QuickbooksRealm - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -103380,24 +101478,16 @@ type QuickbooksUqc implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Item`. """ - items(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ - The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksItemsConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + items( + filter: QuickbooksItemFilter + orderBy: [QuickbooksItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksItemsConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -105060,9 +103150,7 @@ type QuickbooksJournalCode implements OneGraphNode & QuickbooksNode { """ lastUpdatedTime: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -110321,42 +108409,28 @@ type QuickbooksRefundReceipt implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `RefundReceiptLineItem`. """ - lineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptLineItemFilter """ - The method to use when ordering `RefundReceiptLineItem`. - """ orderBy: [QuickbooksRefundReceiptLineItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksRefundReceiptLineItemsConnection! + lineItems( + filter: QuickbooksRefundReceiptLineItemFilter + orderBy: [QuickbooksRefundReceiptLineItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksRefundReceiptLineItemsConnection! """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ - The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + transactionTaxDetailLines( + filter: QuickbooksTransactionTaxDetailLineFilter + orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTransactionTaxDetailLinesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -111168,42 +109242,28 @@ type QuickbooksSalesReceipt implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `SalesReceiptLineItem`. """ - lineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptLineItemFilter """ - The method to use when ordering `SalesReceiptLineItem`. - """ orderBy: [QuickbooksSalesReceiptLineItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksSalesReceiptLineItemsConnection! + lineItems( + filter: QuickbooksSalesReceiptLineItemFilter + orderBy: [QuickbooksSalesReceiptLineItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksSalesReceiptLineItemsConnection! """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ - The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + transactionTaxDetailLines( + filter: QuickbooksTransactionTaxDetailLineFilter + orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTransactionTaxDetailLinesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -112252,42 +110312,28 @@ type QuickbooksPurchase implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `PaymentLineItemTransaction`. """ - paymentLineItemTransactions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentLineItemTransactionFilter """ - The method to use when ordering `PaymentLineItemTransaction`. - """ orderBy: [QuickbooksPaymentLineItemTransactionsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPaymentLineItemTransactionsConnection! + paymentLineItemTransactions( + filter: QuickbooksPaymentLineItemTransactionFilter + orderBy: [QuickbooksPaymentLineItemTransactionsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPaymentLineItemTransactionsConnection! """ Reads and enables pagination through a set of `PurchaseLineItem`. """ - lineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseLineItemFilter """ - The method to use when ordering `PurchaseLineItem`. - """ orderBy: [QuickbooksPurchaseLineItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPurchaseLineItemsConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + lineItems( + filter: QuickbooksPurchaseLineItemFilter + orderBy: [QuickbooksPurchaseLineItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPurchaseLineItemsConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -112489,24 +110535,16 @@ type QuickbooksJournalEntry implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ - The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + transactionTaxDetailLines( + filter: QuickbooksTransactionTaxDetailLineFilter + orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTransactionTaxDetailLinesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -112631,21 +110669,15 @@ type QuickbooksPaymentLineItem { """ Reads and enables pagination through a set of `PaymentLineItemTransaction`. """ - linkedTransactions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentLineItemTransactionFilter """ - The method to use when ordering `PaymentLineItemTransaction`. - """ orderBy: [QuickbooksPaymentLineItemTransactionsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPaymentLineItemTransactionsConnection! + linkedTransactions( + filter: QuickbooksPaymentLineItemTransactionFilter + orderBy: [QuickbooksPaymentLineItemTransactionsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPaymentLineItemTransactionsConnection! } """ @@ -112872,24 +110904,16 @@ type QuickbooksPayment implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `PaymentLineItem`. """ - lineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentLineItemFilter """ - The method to use when ordering `PaymentLineItem`. - """ orderBy: [QuickbooksPaymentLineItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPaymentLineItemsConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + lineItems( + filter: QuickbooksPaymentLineItemFilter + orderBy: [QuickbooksPaymentLineItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPaymentLineItemsConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -112956,9 +110980,7 @@ type QuickbooksTransfer implements OneGraphNode & QuickbooksNode { Reads a single `Account` that is related to this `Transfer`. """ fromAccount: QuickbooksAccount - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -113212,21 +111234,15 @@ type QuickbooksDepositLineItem { """ Reads and enables pagination through a set of `DepositLineItemTransaction`. """ - linkedTransactions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositLineItemTransactionFilter """ - The method to use when ordering `DepositLineItemTransaction`. - """ orderBy: [QuickbooksDepositLineItemTransactionsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksDepositLineItemTransactionsConnection! + linkedTransactions( + filter: QuickbooksDepositLineItemTransactionFilter + orderBy: [QuickbooksDepositLineItemTransactionsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksDepositLineItemTransactionsConnection! } """ @@ -113380,42 +111396,28 @@ type QuickbooksDeposit implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `DepositLineItem`. """ - lineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositLineItemFilter """ - The method to use when ordering `DepositLineItem`. - """ orderBy: [QuickbooksDepositLineItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksDepositLineItemsConnection! + lineItems( + filter: QuickbooksDepositLineItemFilter + orderBy: [QuickbooksDepositLineItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksDepositLineItemsConnection! """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ - The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + transactionTaxDetailLines( + filter: QuickbooksTransactionTaxDetailLineFilter + orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTransactionTaxDetailLinesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -113727,24 +111729,16 @@ type QuickbooksTaxAgency implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `TaxRate`. """ - taxRates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxRateFilter """ - The method to use when ordering `TaxRate`. - """ orderBy: [QuickbooksTaxRatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTaxRatesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + taxRates( + filter: QuickbooksTaxRateFilter + orderBy: [QuickbooksTaxRatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTaxRatesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -113840,9 +111834,7 @@ type QuickbooksTaxRate implements OneGraphNode & QuickbooksNode { Reads a single `TaxAgency` that is related to this `TaxRate`. """ taxAgency: QuickbooksTaxAgency - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -114758,42 +112750,28 @@ type QuickbooksCreditMemo implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `CreditMemoLineItem`. """ - lineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoLineItemFilter """ - The method to use when ordering `CreditMemoLineItem`. - """ orderBy: [QuickbooksCreditMemoLineItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCreditMemoLineItemsConnection! + lineItems( + filter: QuickbooksCreditMemoLineItemFilter + orderBy: [QuickbooksCreditMemoLineItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCreditMemoLineItemsConnection! """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ - The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + transactionTaxDetailLines( + filter: QuickbooksTransactionTaxDetailLineFilter + orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTransactionTaxDetailLinesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -114874,114 +112852,76 @@ type QuickbooksPaymentMethod implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Customer`. """ - customers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ - The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCustomersConnection! + customers( + filter: QuickbooksCustomerFilter + orderBy: [QuickbooksCustomersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ - The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCreditMemosConnection! + creditMemos( + filter: QuickbooksCreditMemoFilter + orderBy: [QuickbooksCreditMemosOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `Payment`. """ - payments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentFilter """ - The method to use when ordering `Payment`. - """ orderBy: [QuickbooksPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPaymentsConnection! + payments( + filter: QuickbooksPaymentFilter + orderBy: [QuickbooksPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPaymentsConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ - The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksRefundReceiptsConnection! + refundReceipts( + filter: QuickbooksRefundReceiptFilter + orderBy: [QuickbooksRefundReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ - The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksSalesReceiptsConnection! + salesReceipts( + filter: QuickbooksSalesReceiptFilter + orderBy: [QuickbooksSalesReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchases(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ - The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPurchasesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + purchases( + filter: QuickbooksPurchaseFilter + orderBy: [QuickbooksPurchasesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPurchasesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -115217,561 +113157,375 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `PhysicalAddress`. """ - physicalAddresses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPhysicalAddressFilter """ - The method to use when ordering `PhysicalAddress`. - """ orderBy: [QuickbooksPhysicalAddressesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPhysicalAddressesConnection! + physicalAddresses( + filter: QuickbooksPhysicalAddressFilter + orderBy: [QuickbooksPhysicalAddressesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPhysicalAddressesConnection! """ Reads and enables pagination through a set of `PaymentMethod`. """ - paymentMethods(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentMethodFilter """ - The method to use when ordering `PaymentMethod`. - """ orderBy: [QuickbooksPaymentMethodsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPaymentMethodsConnection! + paymentMethods( + filter: QuickbooksPaymentMethodFilter + orderBy: [QuickbooksPaymentMethodsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPaymentMethodsConnection! """ Reads and enables pagination through a set of `Term`. """ - terms(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTermFilter """ - The method to use when ordering `Term`. - """ orderBy: [QuickbooksTermsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTermsConnection! + terms( + filter: QuickbooksTermFilter + orderBy: [QuickbooksTermsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTermsConnection! """ Reads and enables pagination through a set of `TaxClassification`. """ - taxClassifications(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxClassificationFilter """ - The method to use when ordering `TaxClassification`. - """ orderBy: [QuickbooksTaxClassificationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTaxClassificationsConnection! + taxClassifications( + filter: QuickbooksTaxClassificationFilter + orderBy: [QuickbooksTaxClassificationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTaxClassificationsConnection! """ Reads and enables pagination through a set of `TaxCode`. """ - taxCodes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxCodeFilter """ - The method to use when ordering `TaxCode`. - """ orderBy: [QuickbooksTaxCodesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTaxCodesConnection! + taxCodes( + filter: QuickbooksTaxCodeFilter + orderBy: [QuickbooksTaxCodesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTaxCodesConnection! """ Reads and enables pagination through a set of `TaxAgency`. """ - taxAgencies(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxAgencyFilter """ - The method to use when ordering `TaxAgency`. - """ orderBy: [QuickbooksTaxAgenciesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTaxAgenciesConnection! + taxAgencies( + filter: QuickbooksTaxAgencyFilter + orderBy: [QuickbooksTaxAgenciesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTaxAgenciesConnection! """ Reads and enables pagination through a set of `TaxRate`. """ - taxRates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxRateFilter """ - The method to use when ordering `TaxRate`. - """ orderBy: [QuickbooksTaxRatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTaxRatesConnection! + taxRates( + filter: QuickbooksTaxRateFilter + orderBy: [QuickbooksTaxRatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTaxRatesConnection! """ Reads and enables pagination through a set of `PurchaseTaxRateDetail`. """ - purchaseTaxRateDetails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseTaxRateDetailFilter """ - The method to use when ordering `PurchaseTaxRateDetail`. - """ orderBy: [QuickbooksPurchaseTaxRateDetailsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPurchaseTaxRateDetailsConnection! + purchaseTaxRateDetails( + filter: QuickbooksPurchaseTaxRateDetailFilter + orderBy: [QuickbooksPurchaseTaxRateDetailsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPurchaseTaxRateDetailsConnection! """ Reads and enables pagination through a set of `Class`. """ - classes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksClassFilter """ - The method to use when ordering `Class`. - """ orderBy: [QuickbooksClassesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksClassesConnection! + classes( + filter: QuickbooksClassFilter + orderBy: [QuickbooksClassesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksClassesConnection! """ Reads and enables pagination through a set of `Employee`. """ - employees(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEmployeeFilter """ - The method to use when ordering `Employee`. - """ orderBy: [QuickbooksEmployeesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEmployeesConnection! + employees( + filter: QuickbooksEmployeeFilter + orderBy: [QuickbooksEmployeesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEmployeesConnection! """ Reads and enables pagination through a set of `Vendor`. """ - vendors(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksVendorFilter """ - The method to use when ordering `Vendor`. - """ orderBy: [QuickbooksVendorsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksVendorsConnection! + vendors( + filter: QuickbooksVendorFilter + orderBy: [QuickbooksVendorsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksVendorsConnection! """ Reads and enables pagination through a set of `Department`. """ - departments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepartmentFilter """ - The method to use when ordering `Department`. - """ orderBy: [QuickbooksDepartmentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksDepartmentsConnection! + departments( + filter: QuickbooksDepartmentFilter + orderBy: [QuickbooksDepartmentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksDepartmentsConnection! """ Reads and enables pagination through a set of `Customer`. """ - customers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ - The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCustomersConnection! + customers( + filter: QuickbooksCustomerFilter + orderBy: [QuickbooksCustomersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Item`. """ - items(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ - The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksItemsConnection! + items( + filter: QuickbooksItemFilter + orderBy: [QuickbooksItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `Bill`. """ - bills(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillFilter """ - The method to use when ordering `Bill`. - """ orderBy: [QuickbooksBillsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillsConnection! + bills( + filter: QuickbooksBillFilter + orderBy: [QuickbooksBillsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillsConnection! """ Reads and enables pagination through a set of `BillPayment`. """ - billPayments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ - The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillPaymentsConnection! + billPayments( + filter: QuickbooksBillPaymentFilter + orderBy: [QuickbooksBillPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillPaymentsConnection! """ Reads and enables pagination through a set of `Invoice`. """ - realmInvoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ - The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoicesConnection! + realmInvoices( + filter: QuickbooksInvoiceFilter + orderBy: [QuickbooksInvoicesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - realmEstimates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ - The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEstimatesConnection! + realmEstimates( + filter: QuickbooksEstimateFilter + orderBy: [QuickbooksEstimatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ - The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCreditMemosConnection! + creditMemos( + filter: QuickbooksCreditMemoFilter + orderBy: [QuickbooksCreditMemosOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `Payment`. """ - payments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentFilter """ - The method to use when ordering `Payment`. - """ orderBy: [QuickbooksPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPaymentsConnection! + payments( + filter: QuickbooksPaymentFilter + orderBy: [QuickbooksPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPaymentsConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ - The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksRefundReceiptsConnection! + refundReceipts( + filter: QuickbooksRefundReceiptFilter + orderBy: [QuickbooksRefundReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ - The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksSalesReceiptsConnection! + salesReceipts( + filter: QuickbooksSalesReceiptFilter + orderBy: [QuickbooksSalesReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `JournalCode`. """ - journalCodes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksJournalCodeFilter """ - The method to use when ordering `JournalCode`. - """ orderBy: [QuickbooksJournalCodesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksJournalCodesConnection! + journalCodes( + filter: QuickbooksJournalCodeFilter + orderBy: [QuickbooksJournalCodesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksJournalCodesConnection! """ Reads and enables pagination through a set of `JournalEntry`. """ - journalEntries(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksJournalEntryFilter """ - The method to use when ordering `JournalEntry`. - """ orderBy: [QuickbooksJournalEntriesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksJournalEntriesConnection! + journalEntries( + filter: QuickbooksJournalEntryFilter + orderBy: [QuickbooksJournalEntriesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksJournalEntriesConnection! """ Reads and enables pagination through a set of `Transfer`. """ - transfers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransferFilter """ - The method to use when ordering `Transfer`. - """ orderBy: [QuickbooksTransfersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTransfersConnection! + transfers( + filter: QuickbooksTransferFilter + orderBy: [QuickbooksTransfersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTransfersConnection! """ Reads and enables pagination through a set of `Deposit`. """ - deposits(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositFilter """ - The method to use when ordering `Deposit`. - """ orderBy: [QuickbooksDepositsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksDepositsConnection! + deposits( + filter: QuickbooksDepositFilter + orderBy: [QuickbooksDepositsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksDepositsConnection! """ Reads and enables pagination through a set of `PaymentLineItem`. """ - paymentLineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentLineItemFilter """ - The method to use when ordering `PaymentLineItem`. - """ orderBy: [QuickbooksPaymentLineItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPaymentLineItemsConnection! + paymentLineItems( + filter: QuickbooksPaymentLineItemFilter + orderBy: [QuickbooksPaymentLineItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPaymentLineItemsConnection! """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ - The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! + transactionTaxDetailLines( + filter: QuickbooksTransactionTaxDetailLineFilter + orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTransactionTaxDetailLinesConnection! """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ - The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTimeActivitiesConnection! + timeActivities( + filter: QuickbooksTimeActivityFilter + orderBy: [QuickbooksTimeActivitiesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTimeActivitiesConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchases(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ - The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPurchasesConnection! + purchases( + filter: QuickbooksPurchaseFilter + orderBy: [QuickbooksPurchasesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPurchasesConnection! """ Reads and enables pagination through a set of `PurchaseLineItem`. """ - purchaseLineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseLineItemFilter """ - The method to use when ordering `PurchaseLineItem`. - """ orderBy: [QuickbooksPurchaseLineItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPurchaseLineItemsConnection! + purchaseLineItems( + filter: QuickbooksPurchaseLineItemFilter + orderBy: [QuickbooksPurchaseLineItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPurchaseLineItemsConnection! """ Reads a single `CompanyInfo` that is related to this `Realm`. """ @@ -115779,60 +113533,41 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `CompanyInfo`. """ - companyInfos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCompanyInfoFilter """ - The method to use when ordering `CompanyInfo`. - """ orderBy: [QuickbooksCompanyInfosOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCompanyInfosConnection! @deprecated(reason: "Please use companyInfo instead") + companyInfos( + filter: QuickbooksCompanyInfoFilter + orderBy: [QuickbooksCompanyInfosOrderBy!] + after: String + before: String + offset: Int + last: Int + 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 """ - The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoicesConnection! + invoices( + filter: QuickbooksInvoiceFilter + orderBy: [QuickbooksInvoicesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ - The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEstimatesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + estimates( + filter: QuickbooksEstimateFilter + orderBy: [QuickbooksEstimatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEstimatesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -116012,9 +113747,7 @@ type QuickbooksCompanyInfo implements OneGraphNode & QuickbooksNode { Reads a single `PhysicalAddress` that is related to this `CompanyInfo`. """ customerCommunicationAddress: QuickbooksPhysicalAddress - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -116718,42 +114451,28 @@ type QuickbooksTaxClassification implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `TaxClassification`. """ - subTaxClassifications(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTaxClassificationFilter """ - The method to use when ordering `TaxClassification`. - """ orderBy: [QuickbooksTaxClassificationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTaxClassificationsConnection! + subTaxClassifications( + filter: QuickbooksTaxClassificationFilter + orderBy: [QuickbooksTaxClassificationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTaxClassificationsConnection! """ Reads and enables pagination through a set of `Item`. """ - items(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ - The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksItemsConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + items( + filter: QuickbooksItemFilter + orderBy: [QuickbooksItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksItemsConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -117138,60 +114857,40 @@ type QuickbooksEstimate implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `EstimateLineItem`. """ - lineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateLineItemFilter """ - The method to use when ordering `EstimateLineItem`. - """ orderBy: [QuickbooksEstimateLineItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEstimateLineItemsConnection! + lineItems( + filter: QuickbooksEstimateLineItemFilter + orderBy: [QuickbooksEstimateLineItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEstimateLineItemsConnection! """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ - The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! + transactionTaxDetailLines( + filter: QuickbooksTransactionTaxDetailLineFilter + orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTransactionTaxDetailLinesConnection! """ 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 """ - The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoicesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + invoices( + filter: QuickbooksInvoiceFilter + orderBy: [QuickbooksInvoicesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoicesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -117931,132 +115630,88 @@ type QuickbooksClass implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Class`. """ - subClasses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksClassFilter """ - The method to use when ordering `Class`. - """ orderBy: [QuickbooksClassesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksClassesConnection! + subClasses( + filter: QuickbooksClassFilter + orderBy: [QuickbooksClassesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksClassesConnection! """ 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 """ - The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoicesConnection! + invoices( + filter: QuickbooksInvoiceFilter + orderBy: [QuickbooksInvoicesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ - The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEstimatesConnection! + estimates( + filter: QuickbooksEstimateFilter + orderBy: [QuickbooksEstimatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ - The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCreditMemosConnection! + creditMemos( + filter: QuickbooksCreditMemoFilter + orderBy: [QuickbooksCreditMemosOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ - The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksRefundReceiptsConnection! + refundReceipts( + filter: QuickbooksRefundReceiptFilter + orderBy: [QuickbooksRefundReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ - The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksSalesReceiptsConnection! + salesReceipts( + filter: QuickbooksSalesReceiptFilter + orderBy: [QuickbooksSalesReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ - The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTimeActivitiesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + timeActivities( + filter: QuickbooksTimeActivityFilter + orderBy: [QuickbooksTimeActivitiesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTimeActivitiesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -118196,9 +115851,7 @@ type QuickbooksTimeActivity implements OneGraphNode & QuickbooksNode { Reads a single `Department` that is related to this `TimeActivity`. """ department: QuickbooksDepartment - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -118354,42 +116007,28 @@ type QuickbooksEmployee implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ - The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTimeActivitiesConnection! + timeActivities( + filter: QuickbooksTimeActivityFilter + orderBy: [QuickbooksTimeActivitiesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTimeActivitiesConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchases(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ - The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPurchasesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + purchases( + filter: QuickbooksPurchaseFilter + orderBy: [QuickbooksPurchasesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPurchasesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -118485,330 +116124,220 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Employee`. """ - employees(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEmployeeFilter """ - The method to use when ordering `Employee`. - """ orderBy: [QuickbooksEmployeesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEmployeesConnection! + employees( + filter: QuickbooksEmployeeFilter + orderBy: [QuickbooksEmployeesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEmployeesConnection! """ Reads and enables pagination through a set of `Vendor`. """ - vendorsByBillingAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksVendorFilter """ - The method to use when ordering `Vendor`. - """ orderBy: [QuickbooksVendorsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksVendorsConnection! + vendorsByBillingAddress( + filter: QuickbooksVendorFilter + orderBy: [QuickbooksVendorsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksVendorsConnection! """ Reads and enables pagination through a set of `Customer`. """ - customersByShippingAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ - The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCustomersConnection! + customersByShippingAddress( + filter: QuickbooksCustomerFilter + orderBy: [QuickbooksCustomersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Customer`. """ - customersByBillingAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ - The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCustomersConnection! + customersByBillingAddress( + filter: QuickbooksCustomerFilter + orderBy: [QuickbooksCustomersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoicesByShipFromAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ - The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoicesConnection! + invoicesByShipFromAddress( + filter: QuickbooksInvoiceFilter + orderBy: [QuickbooksInvoicesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoicesByShippingAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ - The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoicesConnection! + invoicesByShippingAddress( + filter: QuickbooksInvoiceFilter + orderBy: [QuickbooksInvoicesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoicesByBillingAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ - The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoicesConnection! + invoicesByBillingAddress( + filter: QuickbooksInvoiceFilter + orderBy: [QuickbooksInvoicesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimatesByShipFromAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ - The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEstimatesConnection! + estimatesByShipFromAddress( + filter: QuickbooksEstimateFilter + orderBy: [QuickbooksEstimatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimatesByShippingAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ - The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEstimatesConnection! + estimatesByShippingAddress( + filter: QuickbooksEstimateFilter + orderBy: [QuickbooksEstimatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimatesByBillingAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ - The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEstimatesConnection! + estimatesByBillingAddress( + filter: QuickbooksEstimateFilter + orderBy: [QuickbooksEstimatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemosByShippingAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ - The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCreditMemosConnection! + creditMemosByShippingAddress( + filter: QuickbooksCreditMemoFilter + orderBy: [QuickbooksCreditMemosOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemosByBillingAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ - The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCreditMemosConnection! + creditMemosByBillingAddress( + filter: QuickbooksCreditMemoFilter + orderBy: [QuickbooksCreditMemosOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceiptsByShippingAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ - The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksRefundReceiptsConnection! + refundReceiptsByShippingAddress( + filter: QuickbooksRefundReceiptFilter + orderBy: [QuickbooksRefundReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceiptsByBillingAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ - The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksRefundReceiptsConnection! + refundReceiptsByBillingAddress( + filter: QuickbooksRefundReceiptFilter + orderBy: [QuickbooksRefundReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceiptsByShipFromAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ - The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksSalesReceiptsConnection! + salesReceiptsByShipFromAddress( + filter: QuickbooksSalesReceiptFilter + orderBy: [QuickbooksSalesReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceiptsByShippingAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ - The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksSalesReceiptsConnection! + salesReceiptsByShippingAddress( + filter: QuickbooksSalesReceiptFilter + orderBy: [QuickbooksSalesReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceiptsByBillingAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ - The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksSalesReceiptsConnection! + salesReceiptsByBillingAddress( + filter: QuickbooksSalesReceiptFilter + orderBy: [QuickbooksSalesReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchasesByRemitToAddress(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ - The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPurchasesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + purchasesByRemitToAddress( + filter: QuickbooksPurchaseFilter + orderBy: [QuickbooksPurchasesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPurchasesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -119060,78 +116589,52 @@ type QuickbooksInvoice implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `InvoiceLineItem`. """ - lineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceLineItemFilter """ - The method to use when ordering `InvoiceLineItem`. - """ orderBy: [QuickbooksInvoiceLineItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoiceLineItemsConnection! + lineItems( + filter: QuickbooksInvoiceLineItemFilter + orderBy: [QuickbooksInvoiceLineItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoiceLineItemsConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ - The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCreditMemosConnection! + creditMemos( + filter: QuickbooksCreditMemoFilter + orderBy: [QuickbooksCreditMemosOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransactionTaxDetailLineFilter """ - The method to use when ordering `TransactionTaxDetailLine`. - """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! + transactionTaxDetailLines( + filter: QuickbooksTransactionTaxDetailLineFilter + orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTransactionTaxDetailLinesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ - The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEstimatesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + estimates( + filter: QuickbooksEstimateFilter + orderBy: [QuickbooksEstimatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEstimatesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -119427,258 +116930,172 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Account`. """ - accounts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksAccountFilter """ - The method to use when ordering `Account`. - """ orderBy: [QuickbooksAccountsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksAccountsConnection! + accounts( + filter: QuickbooksAccountFilter + orderBy: [QuickbooksAccountsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksAccountsConnection! """ Reads and enables pagination through a set of `Vendor`. """ - vendors(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksVendorFilter """ - The method to use when ordering `Vendor`. - """ orderBy: [QuickbooksVendorsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksVendorsConnection! + vendors( + filter: QuickbooksVendorFilter + orderBy: [QuickbooksVendorsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksVendorsConnection! """ Reads and enables pagination through a set of `Customer`. """ - customers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ - The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCustomersConnection! + customers( + filter: QuickbooksCustomerFilter + orderBy: [QuickbooksCustomersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Bill`. """ - bills(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillFilter """ - The method to use when ordering `Bill`. - """ orderBy: [QuickbooksBillsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillsConnection! + bills( + filter: QuickbooksBillFilter + orderBy: [QuickbooksBillsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillsConnection! """ Reads and enables pagination through a set of `BillPayment`. """ - billPayments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ - The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillPaymentsConnection! + billPayments( + filter: QuickbooksBillPaymentFilter + orderBy: [QuickbooksBillPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillPaymentsConnection! """ 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 """ - The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoicesConnection! + invoices( + filter: QuickbooksInvoiceFilter + orderBy: [QuickbooksInvoicesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ - The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEstimatesConnection! + estimates( + filter: QuickbooksEstimateFilter + orderBy: [QuickbooksEstimatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ - The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCreditMemosConnection! + creditMemos( + filter: QuickbooksCreditMemoFilter + orderBy: [QuickbooksCreditMemosOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `Payment`. """ - payments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentFilter """ - The method to use when ordering `Payment`. - """ orderBy: [QuickbooksPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPaymentsConnection! + payments( + filter: QuickbooksPaymentFilter + orderBy: [QuickbooksPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPaymentsConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ - The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksRefundReceiptsConnection! + refundReceipts( + filter: QuickbooksRefundReceiptFilter + orderBy: [QuickbooksRefundReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ - The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksSalesReceiptsConnection! + salesReceipts( + filter: QuickbooksSalesReceiptFilter + orderBy: [QuickbooksSalesReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `JournalEntry`. """ - journalEntries(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksJournalEntryFilter """ - The method to use when ordering `JournalEntry`. - """ orderBy: [QuickbooksJournalEntriesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksJournalEntriesConnection! + journalEntries( + filter: QuickbooksJournalEntryFilter + orderBy: [QuickbooksJournalEntriesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksJournalEntriesConnection! """ Reads and enables pagination through a set of `Deposit`. """ - deposits(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositFilter """ - The method to use when ordering `Deposit`. - """ orderBy: [QuickbooksDepositsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksDepositsConnection! + deposits( + filter: QuickbooksDepositFilter + orderBy: [QuickbooksDepositsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksDepositsConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchases(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ - The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPurchasesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + purchases( + filter: QuickbooksPurchaseFilter + orderBy: [QuickbooksPurchasesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPurchasesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -119811,24 +117228,16 @@ type QuickbooksBillPayment implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `BillPaymentLineItem`. """ - lineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentLineItemFilter """ - The method to use when ordering `BillPaymentLineItem`. - """ orderBy: [QuickbooksBillPaymentLineItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillPaymentLineItemsConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + lineItems( + filter: QuickbooksBillPaymentLineItemFilter + orderBy: [QuickbooksBillPaymentLineItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillPaymentLineItemsConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -120282,186 +117691,124 @@ type QuickbooksDepartment implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Department`. """ - subDepartments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepartmentFilter """ - The method to use when ordering `Department`. - """ orderBy: [QuickbooksDepartmentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksDepartmentsConnection! + subDepartments( + filter: QuickbooksDepartmentFilter + orderBy: [QuickbooksDepartmentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksDepartmentsConnection! """ Reads and enables pagination through a set of `Bill`. """ - bills(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillFilter """ - The method to use when ordering `Bill`. - """ orderBy: [QuickbooksBillsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillsConnection! + bills( + filter: QuickbooksBillFilter + orderBy: [QuickbooksBillsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillsConnection! """ Reads and enables pagination through a set of `BillPayment`. """ - billPayments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ - The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillPaymentsConnection! + billPayments( + filter: QuickbooksBillPaymentFilter + orderBy: [QuickbooksBillPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillPaymentsConnection! """ 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 """ - The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoicesConnection! + invoices( + filter: QuickbooksInvoiceFilter + orderBy: [QuickbooksInvoicesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ - The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEstimatesConnection! + estimates( + filter: QuickbooksEstimateFilter + orderBy: [QuickbooksEstimatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ - The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCreditMemosConnection! + creditMemos( + filter: QuickbooksCreditMemoFilter + orderBy: [QuickbooksCreditMemosOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ - The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksRefundReceiptsConnection! + refundReceipts( + filter: QuickbooksRefundReceiptFilter + orderBy: [QuickbooksRefundReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ - The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksSalesReceiptsConnection! + salesReceipts( + filter: QuickbooksSalesReceiptFilter + orderBy: [QuickbooksSalesReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `Deposit`. """ - deposits(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositFilter """ - The method to use when ordering `Deposit`. - """ orderBy: [QuickbooksDepositsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksDepositsConnection! + deposits( + filter: QuickbooksDepositFilter + orderBy: [QuickbooksDepositsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksDepositsConnection! """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ - The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTimeActivitiesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + timeActivities( + filter: QuickbooksTimeActivityFilter + orderBy: [QuickbooksTimeActivitiesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTimeActivitiesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -120585,24 +117932,16 @@ type QuickbooksBill implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `BillLineItem`. """ - lineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillLineItemFilter """ - The method to use when ordering `BillLineItem`. - """ orderBy: [QuickbooksBillLineItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillLineItemsConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + lineItems( + filter: QuickbooksBillLineItemFilter + orderBy: [QuickbooksBillLineItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillLineItemsConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -121093,114 +118432,76 @@ type QuickbooksTerm implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Vendor`. """ - vendors(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksVendorFilter """ - The method to use when ordering `Vendor`. - """ orderBy: [QuickbooksVendorsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksVendorsConnection! + vendors( + filter: QuickbooksVendorFilter + orderBy: [QuickbooksVendorsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksVendorsConnection! """ Reads and enables pagination through a set of `Customer`. """ - customers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ - The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCustomersConnection! + customers( + filter: QuickbooksCustomerFilter + orderBy: [QuickbooksCustomersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Bill`. """ - bills(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillFilter """ - The method to use when ordering `Bill`. - """ orderBy: [QuickbooksBillsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillsConnection! + bills( + filter: QuickbooksBillFilter + orderBy: [QuickbooksBillsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillsConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoicesBySalesTerm(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ - The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoicesConnection! + invoicesBySalesTerm( + filter: QuickbooksInvoiceFilter + orderBy: [QuickbooksInvoicesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ - The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEstimatesConnection! + estimates( + filter: QuickbooksEstimateFilter + orderBy: [QuickbooksEstimatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ - The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCreditMemosConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + creditMemos( + filter: QuickbooksCreditMemoFilter + orderBy: [QuickbooksCreditMemosOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCreditMemosConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -121371,114 +118672,76 @@ type QuickbooksVendor implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Item`. """ - items(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ - The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksItemsConnection! + items( + filter: QuickbooksItemFilter + orderBy: [QuickbooksItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `Bill`. """ - bills(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillFilter """ - The method to use when ordering `Bill`. - """ orderBy: [QuickbooksBillsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillsConnection! + bills( + filter: QuickbooksBillFilter + orderBy: [QuickbooksBillsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillsConnection! """ Reads and enables pagination through a set of `BillPayment`. """ - billPayments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ - The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillPaymentsConnection! + billPayments( + filter: QuickbooksBillPaymentFilter + orderBy: [QuickbooksBillPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillPaymentsConnection! """ Reads and enables pagination through a set of `DepositLineItem`. """ - depositLineItemsByRealmIdAndVendorId(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositLineItemFilter """ - The method to use when ordering `DepositLineItem`. - """ orderBy: [QuickbooksDepositLineItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksDepositLineItemsConnection! + depositLineItemsByRealmIdAndVendorId( + filter: QuickbooksDepositLineItemFilter + orderBy: [QuickbooksDepositLineItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksDepositLineItemsConnection! """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ - The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTimeActivitiesConnection! + timeActivities( + filter: QuickbooksTimeActivityFilter + orderBy: [QuickbooksTimeActivitiesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTimeActivitiesConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchases(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ - The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPurchasesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + purchases( + filter: QuickbooksPurchaseFilter + orderBy: [QuickbooksPurchasesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPurchasesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -121796,42 +119059,28 @@ type QuickbooksItem implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Item`. """ - subItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ - The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksItemsConnection! + subItems( + filter: QuickbooksItemFilter + orderBy: [QuickbooksItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ - The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTimeActivitiesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + timeActivities( + filter: QuickbooksTimeActivityFilter + orderBy: [QuickbooksTimeActivitiesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTimeActivitiesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -123223,186 +120472,124 @@ type QuickbooksTaxCode implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Account`. """ - accountsUsingTaxCodeAsDefault(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksAccountFilter """ - The method to use when ordering `Account`. - """ orderBy: [QuickbooksAccountsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksAccountsConnection! + accountsUsingTaxCodeAsDefault( + filter: QuickbooksAccountFilter + orderBy: [QuickbooksAccountsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksAccountsConnection! """ Reads and enables pagination through a set of `Customer`. """ - customers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ - The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCustomersConnection! + customers( + filter: QuickbooksCustomerFilter + orderBy: [QuickbooksCustomersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Item`. """ - itemsBySalesTaxCode(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ - The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksItemsConnection! + itemsBySalesTaxCode( + filter: QuickbooksItemFilter + orderBy: [QuickbooksItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `Item`. """ - itemsByPurchaseTaxCode(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ - The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksItemsConnection! + itemsByPurchaseTaxCode( + filter: QuickbooksItemFilter + orderBy: [QuickbooksItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoicesByTransactionTaxCode(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ - The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoicesConnection! + invoicesByTransactionTaxCode( + filter: QuickbooksInvoiceFilter + orderBy: [QuickbooksInvoicesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimatesByTransactionTaxCode(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ - The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEstimatesConnection! + estimatesByTransactionTaxCode( + filter: QuickbooksEstimateFilter + orderBy: [QuickbooksEstimatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ - The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCreditMemosConnection! + creditMemos( + filter: QuickbooksCreditMemoFilter + orderBy: [QuickbooksCreditMemosOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ - The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksRefundReceiptsConnection! + refundReceipts( + filter: QuickbooksRefundReceiptFilter + orderBy: [QuickbooksRefundReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ - The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksSalesReceiptsConnection! + salesReceipts( + filter: QuickbooksSalesReceiptFilter + orderBy: [QuickbooksSalesReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `JournalEntry`. """ - journalEntries(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksJournalEntryFilter """ - The method to use when ordering `JournalEntry`. - """ orderBy: [QuickbooksJournalEntriesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksJournalEntriesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + journalEntries( + filter: QuickbooksJournalEntryFilter + orderBy: [QuickbooksJournalEntriesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksJournalEntriesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -123842,366 +121029,244 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Account`. """ - subAccounts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksAccountFilter """ - The method to use when ordering `Account`. - """ orderBy: [QuickbooksAccountsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksAccountsConnection! + subAccounts( + filter: QuickbooksAccountFilter + orderBy: [QuickbooksAccountsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksAccountsConnection! """ Reads and enables pagination through a set of `Vendor`. """ - vendors(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksVendorFilter """ - The method to use when ordering `Vendor`. - """ orderBy: [QuickbooksVendorsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksVendorsConnection! + vendors( + filter: QuickbooksVendorFilter + orderBy: [QuickbooksVendorsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksVendorsConnection! """ Reads and enables pagination through a set of `Customer`. """ - customers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ - The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCustomersConnection! + customers( + filter: QuickbooksCustomerFilter + orderBy: [QuickbooksCustomersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Item`. """ - itemsByAssetAccount(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ - The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksItemsConnection! + itemsByAssetAccount( + filter: QuickbooksItemFilter + orderBy: [QuickbooksItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `Item`. """ - itemsByIncomeAccount(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ - The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksItemsConnection! + itemsByIncomeAccount( + filter: QuickbooksItemFilter + orderBy: [QuickbooksItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `Item`. """ - itemsByExpenseAccount(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksItemFilter """ - The method to use when ordering `Item`. - """ orderBy: [QuickbooksItemsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksItemsConnection! + itemsByExpenseAccount( + filter: QuickbooksItemFilter + orderBy: [QuickbooksItemsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `Bill`. """ - bills(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillFilter """ - The method to use when ordering `Bill`. - """ orderBy: [QuickbooksBillsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillsConnection! + bills( + filter: QuickbooksBillFilter + orderBy: [QuickbooksBillsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillsConnection! """ Reads and enables pagination through a set of `BillPayment`. """ - billPayments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ - The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillPaymentsConnection! + billPayments( + filter: QuickbooksBillPaymentFilter + orderBy: [QuickbooksBillPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillPaymentsConnection! """ Reads and enables pagination through a set of `BillPayment`. """ - billPaymentsByCheckPaymentAccount(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ - The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillPaymentsConnection! + billPaymentsByCheckPaymentAccount( + filter: QuickbooksBillPaymentFilter + orderBy: [QuickbooksBillPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillPaymentsConnection! """ Reads and enables pagination through a set of `BillPayment`. """ - billPaymentsByCreditCardPaymentAccount(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksBillPaymentFilter """ - The method to use when ordering `BillPayment`. - """ orderBy: [QuickbooksBillPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksBillPaymentsConnection! + billPaymentsByCreditCardPaymentAccount( + filter: QuickbooksBillPaymentFilter + orderBy: [QuickbooksBillPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksBillPaymentsConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoicesByDepositToAccount(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksInvoiceFilter """ - The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoicesConnection! + invoicesByDepositToAccount( + filter: QuickbooksInvoiceFilter + orderBy: [QuickbooksInvoicesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Payment`. """ - paymentsByDepositToAccount(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentFilter """ - The method to use when ordering `Payment`. - """ orderBy: [QuickbooksPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPaymentsConnection! + paymentsByDepositToAccount( + filter: QuickbooksPaymentFilter + orderBy: [QuickbooksPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPaymentsConnection! """ Reads and enables pagination through a set of `Payment`. """ - paymentsByAccountsReceivableAccount(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentFilter """ - The method to use when ordering `Payment`. - """ orderBy: [QuickbooksPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPaymentsConnection! + paymentsByAccountsReceivableAccount( + filter: QuickbooksPaymentFilter + orderBy: [QuickbooksPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPaymentsConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceiptsByDepositToAccount(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ - The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksRefundReceiptsConnection! + refundReceiptsByDepositToAccount( + filter: QuickbooksRefundReceiptFilter + orderBy: [QuickbooksRefundReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceiptsByDepositToAccount(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ - The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksSalesReceiptsConnection! + salesReceiptsByDepositToAccount( + filter: QuickbooksSalesReceiptFilter + orderBy: [QuickbooksSalesReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `Transfer`. """ - transfersByTransferToAccount(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransferFilter """ - The method to use when ordering `Transfer`. - """ orderBy: [QuickbooksTransfersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTransfersConnection! + transfersByTransferToAccount( + filter: QuickbooksTransferFilter + orderBy: [QuickbooksTransfersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTransfersConnection! """ Reads and enables pagination through a set of `Transfer`. """ - transfersByTransferfromAccount(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTransferFilter """ - The method to use when ordering `Transfer`. - """ orderBy: [QuickbooksTransfersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTransfersConnection! + transfersByTransferfromAccount( + filter: QuickbooksTransferFilter + orderBy: [QuickbooksTransfersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTransfersConnection! """ Reads and enables pagination through a set of `Deposit`. """ - depositsByDepositTo(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositFilter """ - The method to use when ordering `Deposit`. - """ orderBy: [QuickbooksDepositsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksDepositsConnection! + depositsByDepositTo( + filter: QuickbooksDepositFilter + orderBy: [QuickbooksDepositsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksDepositsConnection! """ Reads and enables pagination through a set of `Deposit`. """ - depositsByCashBack(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksDepositFilter """ - The method to use when ordering `Deposit`. - """ orderBy: [QuickbooksDepositsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksDepositsConnection! + depositsByCashBack( + filter: QuickbooksDepositFilter + orderBy: [QuickbooksDepositsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksDepositsConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchases(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ - The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPurchasesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + purchases( + filter: QuickbooksPurchaseFilter + orderBy: [QuickbooksPurchasesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPurchasesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -124447,168 +121512,112 @@ type QuickbooksCustomer implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Customer`. """ - subCustomers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ - The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCustomersConnection! + subCustomers( + filter: QuickbooksCustomerFilter + orderBy: [QuickbooksCustomersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCustomersConnection! """ 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 """ - The method to use when ordering `Invoice`. - """ orderBy: [QuickbooksInvoicesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksInvoicesConnection! + invoices( + filter: QuickbooksInvoiceFilter + orderBy: [QuickbooksInvoicesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksEstimateFilter """ - The method to use when ordering `Estimate`. - """ orderBy: [QuickbooksEstimatesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksEstimatesConnection! + estimates( + filter: QuickbooksEstimateFilter + orderBy: [QuickbooksEstimatesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCreditMemoFilter """ - The method to use when ordering `CreditMemo`. - """ orderBy: [QuickbooksCreditMemosOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCreditMemosConnection! + creditMemos( + filter: QuickbooksCreditMemoFilter + orderBy: [QuickbooksCreditMemosOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `Payment`. """ - payments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPaymentFilter """ - The method to use when ordering `Payment`. - """ orderBy: [QuickbooksPaymentsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPaymentsConnection! + payments( + filter: QuickbooksPaymentFilter + orderBy: [QuickbooksPaymentsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPaymentsConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksRefundReceiptFilter """ - The method to use when ordering `RefundReceipt`. - """ orderBy: [QuickbooksRefundReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksRefundReceiptsConnection! + refundReceipts( + filter: QuickbooksRefundReceiptFilter + orderBy: [QuickbooksRefundReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksSalesReceiptFilter """ - The method to use when ordering `SalesReceipt`. - """ orderBy: [QuickbooksSalesReceiptsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksSalesReceiptsConnection! + salesReceipts( + filter: QuickbooksSalesReceiptFilter + orderBy: [QuickbooksSalesReceiptsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksTimeActivityFilter """ - The method to use when ordering `TimeActivity`. - """ orderBy: [QuickbooksTimeActivitiesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksTimeActivitiesConnection! + timeActivities( + filter: QuickbooksTimeActivityFilter + orderBy: [QuickbooksTimeActivitiesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksTimeActivitiesConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchases(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksPurchaseFilter """ - The method to use when ordering `Purchase`. - """ orderBy: [QuickbooksPurchasesOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksPurchasesConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + purchases( + filter: QuickbooksPurchaseFilter + orderBy: [QuickbooksPurchasesOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksPurchasesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -124660,24 +121669,16 @@ type QuickbooksTaxExemptionReason implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Customer`. """ - customers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: QuickbooksCustomerFilter """ - The method to use when ordering `Customer`. - """ orderBy: [QuickbooksCustomersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): QuickbooksCustomersConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customers( + filter: QuickbooksCustomerFilter + orderBy: [QuickbooksCustomersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): QuickbooksCustomersConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -125247,129 +122248,85 @@ type ImmigrationGraphQuery implements OneGraphNode & ImmigrationGraphNode { """ Fetches an object given its globally unique `ID`. """ - node(""" - The globally unique `ID`. - """ nodeId: ID!): ImmigrationGraphNode + node(nodeId: ID!): ImmigrationGraphNode """ Reads and enables pagination through a set of `Attorney`. """ - allAttorneys(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphAttorneyFilter """ - A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphAttorneyCondition """ - The method to use when ordering `Attorney`. - """ orderBy: [ImmigrationGraphAttorneysOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): ImmigrationGraphAttorneysConnection + allAttorneys( + filter: ImmigrationGraphAttorneyFilter + condition: ImmigrationGraphAttorneyCondition + orderBy: [ImmigrationGraphAttorneysOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): ImmigrationGraphAttorneysConnection """ Reads and enables pagination through a set of `Employer`. """ - allEmployers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphEmployerFilter """ - A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphEmployerCondition """ - The method to use when ordering `Employer`. - """ orderBy: [ImmigrationGraphEmployersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): ImmigrationGraphEmployersConnection + allEmployers( + filter: ImmigrationGraphEmployerFilter + condition: ImmigrationGraphEmployerCondition + orderBy: [ImmigrationGraphEmployersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): ImmigrationGraphEmployersConnection """ Reads and enables pagination through a set of `EmployerPoc`. """ - allEmployerPocs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphEmployerPocFilter """ - A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphEmployerPocCondition """ - The method to use when ordering `EmployerPoc`. - """ orderBy: [ImmigrationGraphEmployerPocsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): ImmigrationGraphEmployerPocsConnection + allEmployerPocs( + filter: ImmigrationGraphEmployerPocFilter + condition: ImmigrationGraphEmployerPocCondition + orderBy: [ImmigrationGraphEmployerPocsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): ImmigrationGraphEmployerPocsConnection """ Reads and enables pagination through a set of `Firm`. """ - allFirms(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphFirmFilter """ - A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphFirmCondition """ - The method to use when ordering `Firm`. - """ orderBy: [ImmigrationGraphFirmsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): ImmigrationGraphFirmsConnection + allFirms( + filter: ImmigrationGraphFirmFilter + condition: ImmigrationGraphFirmCondition + orderBy: [ImmigrationGraphFirmsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): ImmigrationGraphFirmsConnection """ Reads and enables pagination through a set of `H1BApplication`. """ - allH1BApplications(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphH1BApplicationFilter """ - A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphH1BApplicationCondition """ - The method to use when ordering `H1BApplication`. - """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): ImmigrationGraphH1BApplicationsConnection + allH1BApplications( + filter: ImmigrationGraphH1BApplicationFilter + condition: ImmigrationGraphH1BApplicationCondition + orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): ImmigrationGraphH1BApplicationsConnection """ Reads and enables pagination through a set of `Preparer`. """ - allPreparers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphPreparerFilter """ - A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphPreparerCondition """ - The method to use when ordering `Preparer`. - """ orderBy: [ImmigrationGraphPreparersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): ImmigrationGraphPreparersConnection + allPreparers( + filter: ImmigrationGraphPreparerFilter + condition: ImmigrationGraphPreparerCondition + orderBy: [ImmigrationGraphPreparersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): ImmigrationGraphPreparersConnection """ """ @@ -125425,42 +122382,28 @@ type ImmigrationGraphQuery implements OneGraphNode & ImmigrationGraphNode { """ Reads a single `Attorney` using its globally unique `ID`. """ - attorney(""" - The globally unique `ID` to be used in selecting a single `Attorney`. - """ nodeId: ID!): ImmigrationGraphAttorney + attorney(nodeId: ID!): ImmigrationGraphAttorney """ Reads a single `Employer` using its globally unique `ID`. """ - employer(""" - The globally unique `ID` to be used in selecting a single `Employer`. - """ nodeId: ID!): ImmigrationGraphEmployer + employer(nodeId: ID!): ImmigrationGraphEmployer """ Reads a single `EmployerPoc` using its globally unique `ID`. """ - employerPoc(""" - The globally unique `ID` to be used in selecting a single `EmployerPoc`. - """ nodeId: ID!): ImmigrationGraphEmployerPoc + employerPoc(nodeId: ID!): ImmigrationGraphEmployerPoc """ Reads a single `Firm` using its globally unique `ID`. """ - firm(""" - The globally unique `ID` to be used in selecting a single `Firm`. - """ nodeId: ID!): ImmigrationGraphFirm + firm(nodeId: ID!): ImmigrationGraphFirm """ Reads a single `H1BApplication` using its globally unique `ID`. """ - h1BApplication(""" - The globally unique `ID` to be used in selecting a single `H1BApplication`. - """ nodeId: ID!): ImmigrationGraphH1BApplication + h1BApplication(nodeId: ID!): ImmigrationGraphH1BApplication """ Reads a single `Preparer` using its globally unique `ID`. """ - preparer(""" - The globally unique `ID` to be used in selecting a single `Preparer`. - """ nodeId: ID!): ImmigrationGraphPreparer - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + preparer(nodeId: ID!): ImmigrationGraphPreparer + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -125552,26 +122495,17 @@ type ImmigrationGraphEmployer implements OneGraphNode & ImmigrationGraphNode { """ Reads and enables pagination through a set of `H1BApplication`. """ - h1BApplicationsByEmployerId(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphH1BApplicationFilter """ - A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphH1BApplicationCondition """ - The method to use when ordering `H1BApplication`. - """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): ImmigrationGraphH1BApplicationsConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + h1BApplicationsByEmployerId( + filter: ImmigrationGraphH1BApplicationFilter + condition: ImmigrationGraphH1BApplicationCondition + orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): ImmigrationGraphH1BApplicationsConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126123,26 +123057,17 @@ type ImmigrationGraphPreparer implements OneGraphNode & ImmigrationGraphNode { """ Reads and enables pagination through a set of `H1BApplication`. """ - h1BApplicationsByPreparerId(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphH1BApplicationFilter """ - A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphH1BApplicationCondition """ - The method to use when ordering `H1BApplication`. - """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): ImmigrationGraphH1BApplicationsConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + h1BApplicationsByPreparerId( + filter: ImmigrationGraphH1BApplicationFilter + condition: ImmigrationGraphH1BApplicationCondition + orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): ImmigrationGraphH1BApplicationsConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126682,46 +123607,30 @@ type ImmigrationGraphFirm implements OneGraphNode & ImmigrationGraphNode { """ Reads and enables pagination through a set of `Attorney`. """ - attorneysByFirmId(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphAttorneyFilter """ - A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphAttorneyCondition """ - The method to use when ordering `Attorney`. - """ orderBy: [ImmigrationGraphAttorneysOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): ImmigrationGraphAttorneysConnection! + attorneysByFirmId( + filter: ImmigrationGraphAttorneyFilter + condition: ImmigrationGraphAttorneyCondition + orderBy: [ImmigrationGraphAttorneysOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): ImmigrationGraphAttorneysConnection! """ Reads and enables pagination through a set of `Preparer`. """ - preparersByFirmId(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphPreparerFilter """ - A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphPreparerCondition """ - The method to use when ordering `Preparer`. - """ orderBy: [ImmigrationGraphPreparersOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): ImmigrationGraphPreparersConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + preparersByFirmId( + filter: ImmigrationGraphPreparerFilter + condition: ImmigrationGraphPreparerCondition + orderBy: [ImmigrationGraphPreparersOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): ImmigrationGraphPreparersConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126819,26 +123728,17 @@ type ImmigrationGraphAttorney implements OneGraphNode & ImmigrationGraphNode { """ Reads and enables pagination through a set of `H1BApplication`. """ - h1BApplicationsByAttorneyId(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphH1BApplicationFilter """ - A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphH1BApplicationCondition """ - The method to use when ordering `H1BApplication`. - """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): ImmigrationGraphH1BApplicationsConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + h1BApplicationsByAttorneyId( + filter: ImmigrationGraphH1BApplicationFilter + condition: ImmigrationGraphH1BApplicationCondition + orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): ImmigrationGraphH1BApplicationsConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126971,9 +123871,7 @@ type ImmigrationGraphH1BApplication implements OneGraphNode & ImmigrationGraphNo Reads a single `Preparer` that is related to this `H1BApplication`. """ preparerByPreparerId: ImmigrationGraphPreparer - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127077,26 +123975,17 @@ type ImmigrationGraphEmployerPoc implements OneGraphNode & ImmigrationGraphNode """ Reads and enables pagination through a set of `H1BApplication`. """ - h1BApplicationsByEmployerPocId(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: ImmigrationGraphH1BApplicationFilter """ - A condition to be used in determining which values should be returned by the collection. - """ condition: ImmigrationGraphH1BApplicationCondition """ - The method to use when ordering `H1BApplication`. - """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] """ - Read all values in the set after (below) this cursor. - """ after: String """ - Read all values in the set before (above) this cursor. - """ before: String """ - Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. - """ offset: Int """ - Only read the last `n` values of the set. - """ last: Int """ - Only read the first `n` values of the set. - """ first: Int): ImmigrationGraphH1BApplicationsConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + h1BApplicationsByEmployerPocId( + filter: ImmigrationGraphH1BApplicationFilter + condition: ImmigrationGraphH1BApplicationCondition + orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] + after: String + before: String + offset: Int + last: Int + first: Int + ): ImmigrationGraphH1BApplicationsConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127427,9 +124316,7 @@ type ImmigrationGraphScrapingStatus implements OneGraphNode & ImmigrationGraphNo """ wageLevel: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127551,15 +124438,7 @@ type GitHubEnterpriseIdentityProvider implements OneGraphNode & GitHubNode { """ ExternalIdentities provisioned by this identity provider. """ - externalIdentities(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubExternalIdentityConnection! + externalIdentities(last: Int, first: Int, before: String, after: String): GitHubExternalIdentityConnection! """ """ @@ -127584,9 +124463,7 @@ type GitHubEnterpriseIdentityProvider implements OneGraphNode & GitHubNode { The URL endpoint for the identity provider's SAML SSO. """ ssoUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127681,17 +124558,13 @@ type GitHubEnterprisePendingCollaboratorEdge { """ The enterprise organization repositories this user is a member of. """ - repositories(""" - Ordering options for repositories. - """ orderBy: GitHubRepositoryOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubEnterpriseRepositoryInfoConnection! + repositories( + orderBy: GitHubRepositoryOrder + last: Int + first: Int + before: String + after: String + ): GitHubEnterpriseRepositoryInfoConnection! } """ @@ -127769,9 +124642,7 @@ type GitHubEnterpriseAdministratorInvitation implements OneGraphNode & GitHubNod The invitee's pending role in the enterprise (owner or billing_manager). """ role: GitHubEnterpriseAdministratorRole! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127849,9 +124720,7 @@ type GitHubEnterpriseRepositoryInfo implements OneGraphNode & GitHubNode { The repository's name with owner. """ nameWithOwner: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127913,17 +124782,13 @@ type GitHubEnterpriseOutsideCollaboratorEdge { """ The enterprise organization repositories this user is a member of. """ - repositories(""" - Ordering options for repositories. - """ orderBy: GitHubRepositoryOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubEnterpriseRepositoryInfoConnection! + repositories( + orderBy: GitHubRepositoryOrder + last: Int + first: Int + before: String + after: String + ): GitHubEnterpriseRepositoryInfoConnection! } """ @@ -128166,9 +125031,7 @@ type GitHubEnterpriseServerUserAccountsUpload implements OneGraphNode & GitHubNo Identifies the date and time when the object was last updated. """ updatedAt: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -128285,9 +125148,7 @@ type GitHubEnterpriseServerUserAccountEmail implements OneGraphNode & GitHubNode The user account to which the email belongs. """ userAccount: GitHubEnterpriseServerUserAccount! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -128341,17 +125202,13 @@ type GitHubEnterpriseServerUserAccount implements OneGraphNode & GitHubNode { """ User emails belonging to this user account. """ - emails(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for Enterprise Server user account emails returned from the connection. - """ orderBy: GitHubEnterpriseServerUserAccountEmailOrder): GitHubEnterpriseServerUserAccountEmailConnection! + emails( + last: Int + first: Int + before: String + after: String + orderBy: GitHubEnterpriseServerUserAccountEmailOrder + ): GitHubEnterpriseServerUserAccountEmailConnection! """ The Enterprise Server installation on which this user account exists. """ @@ -128384,9 +125241,7 @@ type GitHubEnterpriseServerUserAccount implements OneGraphNode & GitHubNode { Identifies the date and time when the object was last updated. """ updatedAt: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -128460,34 +125315,24 @@ type GitHubEnterpriseServerInstallation implements OneGraphNode & GitHubNode { """ User accounts on this Enterprise Server installation. """ - userAccounts(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for Enterprise Server user accounts returned from the connection. - """ orderBy: GitHubEnterpriseServerUserAccountOrder): GitHubEnterpriseServerUserAccountConnection! + userAccounts( + last: Int + first: Int + before: String + after: String + orderBy: GitHubEnterpriseServerUserAccountOrder + ): GitHubEnterpriseServerUserAccountConnection! """ User accounts uploads for the Enterprise Server installation. """ - userAccountsUploads(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for Enterprise Server user accounts uploads returned from the connection. - """ orderBy: GitHubEnterpriseServerUserAccountsUploadOrder): GitHubEnterpriseServerUserAccountsUploadConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userAccountsUploads( + last: Int + first: Int + before: String + after: String + orderBy: GitHubEnterpriseServerUserAccountsUploadOrder + ): GitHubEnterpriseServerUserAccountsUploadConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -128626,47 +125471,34 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided action execution capabilities setting value. """ - actionExecutionCapabilitySettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + actionExecutionCapabilitySettingOrganizations( + orderBy: GitHubOrganizationOrder + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! """ A list of all of the administrators for this enterprise. """ - admins(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for administrators returned from the connection. - """ orderBy: GitHubEnterpriseMemberOrder """ - The role to filter by. - """ role: GitHubEnterpriseAdministratorRole """ - The search string to look for. - """ query: String): GitHubEnterpriseAdministratorConnection! + admins( + last: Int + first: Int + before: String + after: String + orderBy: GitHubEnterpriseMemberOrder + role: GitHubEnterpriseAdministratorRole + query: String + ): GitHubEnterpriseAdministratorConnection! """ A list of users in the enterprise who currently have two-factor authentication disabled. """ - affiliatedUsersWithTwoFactorDisabled(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserConnection! + affiliatedUsersWithTwoFactorDisabled( + last: Int + first: Int + before: String + after: String + ): GitHubUserConnection! """ Whether or not affiliated users with two-factor authentication disabled exist in the enterprise. """ @@ -128678,19 +125510,14 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided private repository forking setting value. """ - allowPrivateRepositoryForkingSettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - The setting value to find organizations for. - """ value: Boolean! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + allowPrivateRepositoryForkingSettingOrganizations( + orderBy: GitHubOrganizationOrder + value: Boolean! + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! """ The setting value for base repository permissions for organizations in this enterprise. """ @@ -128698,35 +125525,25 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided default repository permission. """ - defaultRepositoryPermissionSettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - The permission to find organizations for. - """ value: GitHubDefaultRepositoryPermissionField! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + defaultRepositoryPermissionSettingOrganizations( + orderBy: GitHubOrganizationOrder + value: GitHubDefaultRepositoryPermissionField! + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! """ Enterprise Server installations owned by the enterprise. """ - enterpriseServerInstallations(""" - Ordering options for Enterprise Server installations returned. - """ orderBy: GitHubEnterpriseServerInstallationOrder """ - Whether or not to only return installations discovered via GitHub Connect. - """ connectedOnly: Boolean """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubEnterpriseServerInstallationConnection! + enterpriseServerInstallations( + orderBy: GitHubEnterpriseServerInstallationOrder + connectedOnly: Boolean + last: Int + first: Int + before: String + after: String + ): GitHubEnterpriseServerInstallationConnection! """ The setting value for whether the enterprise has an IP allow list enabled. """ @@ -128734,17 +125551,13 @@ type GitHubEnterpriseOwnerInfo { """ The IP addresses that are allowed to access resources owned by the enterprise. """ - ipAllowListEntries(""" - Ordering options for IP allow list entries returned. - """ orderBy: GitHubIpAllowListEntryOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubIpAllowListEntryConnection! + ipAllowListEntries( + orderBy: GitHubIpAllowListEntryOrder + last: Int + first: Int + before: String + after: String + ): GitHubIpAllowListEntryConnection! """ Whether or not the default repository permission is currently being updated. """ @@ -128760,19 +125573,14 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided can change repository visibility setting value. """ - membersCanChangeRepositoryVisibilitySettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - The setting value to find organizations for. - """ value: Boolean! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + membersCanChangeRepositoryVisibilitySettingOrganizations( + orderBy: GitHubOrganizationOrder + value: Boolean! + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! """ The setting value for whether members of organizations in the enterprise can create internal repositories. """ @@ -128792,19 +125600,14 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided repository creation setting value. """ - membersCanCreateRepositoriesSettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - The setting to find organizations for. - """ value: GitHubOrganizationMembersCanCreateRepositoriesSettingValue! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + membersCanCreateRepositoriesSettingOrganizations( + orderBy: GitHubOrganizationOrder + value: GitHubOrganizationMembersCanCreateRepositoriesSettingValue! + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! """ The setting value for whether members with admin permissions for repositories can delete issues. """ @@ -128812,19 +125615,14 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided members can delete issues setting value. """ - membersCanDeleteIssuesSettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - The setting value to find organizations for. - """ value: Boolean! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + membersCanDeleteIssuesSettingOrganizations( + orderBy: GitHubOrganizationOrder + value: Boolean! + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! """ The setting value for whether members with admin permissions for repositories can delete or transfer repositories. """ @@ -128832,19 +125630,14 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided members can delete repositories setting value. """ - membersCanDeleteRepositoriesSettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - The setting value to find organizations for. - """ value: Boolean! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + membersCanDeleteRepositoriesSettingOrganizations( + orderBy: GitHubOrganizationOrder + value: Boolean! + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! """ The setting value for whether members of organizations in the enterprise can invite outside collaborators. """ @@ -128852,19 +125645,14 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided members can invite collaborators setting value. """ - membersCanInviteCollaboratorsSettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - The setting value to find organizations for. - """ value: Boolean! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + membersCanInviteCollaboratorsSettingOrganizations( + orderBy: GitHubOrganizationOrder + value: Boolean! + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! """ Indicates whether members of this enterprise's organizations can purchase additional services for those organizations. """ @@ -128876,19 +125664,14 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided members can update protected branches setting value. """ - membersCanUpdateProtectedBranchesSettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - The setting value to find organizations for. - """ value: Boolean! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + membersCanUpdateProtectedBranchesSettingOrganizations( + orderBy: GitHubOrganizationOrder + value: Boolean! + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! """ The setting value for whether members can view dependency insights. """ @@ -128896,19 +125679,14 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided members can view dependency insights setting value. """ - membersCanViewDependencyInsightsSettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - The setting value to find organizations for. - """ value: Boolean! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + membersCanViewDependencyInsightsSettingOrganizations( + orderBy: GitHubOrganizationOrder + value: Boolean! + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! """ The setting value for whether organization projects are enabled for organizations in this enterprise. """ @@ -128916,87 +125694,60 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided organization projects setting value. """ - organizationProjectsSettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - The setting value to find organizations for. - """ value: Boolean! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + organizationProjectsSettingOrganizations( + orderBy: GitHubOrganizationOrder + value: Boolean! + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! """ A list of outside collaborators across the repositories in the enterprise. """ - outsideCollaborators(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Only return outside collaborators on repositories with this visibility. - """ visibility: GitHubRepositoryVisibility """ - Ordering options for outside collaborators returned from the connection. - """ orderBy: GitHubEnterpriseMemberOrder """ - The search string to look for. - """ query: String """ - The login of one specific outside collaborator. - """ login: String): GitHubEnterpriseOutsideCollaboratorConnection! + outsideCollaborators( + last: Int + first: Int + before: String + after: String + visibility: GitHubRepositoryVisibility + orderBy: GitHubEnterpriseMemberOrder + query: String + login: String + ): GitHubEnterpriseOutsideCollaboratorConnection! """ A list of pending administrator invitations for the enterprise. """ - pendingAdminInvitations(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - The role to filter by. - """ role: GitHubEnterpriseAdministratorRole """ - Ordering options for pending enterprise administrator invitations returned from the connection. - """ orderBy: GitHubEnterpriseAdministratorInvitationOrder """ - The search string to look for. - """ query: String): GitHubEnterpriseAdministratorInvitationConnection! + pendingAdminInvitations( + last: Int + first: Int + before: String + after: String + role: GitHubEnterpriseAdministratorRole + orderBy: GitHubEnterpriseAdministratorInvitationOrder + query: String + ): GitHubEnterpriseAdministratorInvitationConnection! """ A list of pending collaborators across the repositories in the enterprise. """ - pendingCollaborators(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for pending repository collaborator invitations returned from the connection. - """ orderBy: GitHubRepositoryInvitationOrder """ - The search string to look for. - """ query: String): GitHubEnterprisePendingCollaboratorConnection! + pendingCollaborators( + last: Int + first: Int + before: String + after: String + orderBy: GitHubRepositoryInvitationOrder + query: String + ): GitHubEnterprisePendingCollaboratorConnection! """ A list of pending member invitations for organizations in the enterprise. """ - pendingMemberInvitations(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - The search string to look for. - """ query: String): GitHubEnterprisePendingMemberInvitationConnection! + pendingMemberInvitations( + last: Int + first: Int + before: String + after: String + query: String + ): GitHubEnterprisePendingMemberInvitationConnection! """ The setting value for whether repository projects are enabled in this enterprise. """ @@ -129004,19 +125755,14 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided repository projects setting value. """ - repositoryProjectsSettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - The setting value to find organizations for. - """ value: Boolean! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + repositoryProjectsSettingOrganizations( + orderBy: GitHubOrganizationOrder + value: Boolean! + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! """ The SAML Identity Provider for the enterprise. """ @@ -129024,19 +125770,14 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the SAML single sign-on setting value. """ - samlIdentityProviderSettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - The setting value to find organizations for. - """ value: GitHubIdentityProviderConfigurationState! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + samlIdentityProviderSettingOrganizations( + orderBy: GitHubOrganizationOrder + value: GitHubIdentityProviderConfigurationState! + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! """ The setting value for whether team discussions are enabled for organizations in this enterprise. """ @@ -129044,19 +125785,14 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided team discussions setting value. """ - teamDiscussionsSettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - The setting value to find organizations for. - """ value: Boolean! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + teamDiscussionsSettingOrganizations( + orderBy: GitHubOrganizationOrder + value: Boolean! + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! """ The setting value for whether the enterprise requires two-factor authentication for its organizations and users. """ @@ -129064,19 +125800,14 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the two-factor authentication setting value. """ - twoFactorRequiredSettingOrganizations(""" - Ordering options for organizations with this setting. - """ orderBy: GitHubOrganizationOrder """ - The setting value to find organizations for. - """ value: Boolean! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + twoFactorRequiredSettingOrganizations( + orderBy: GitHubOrganizationOrder + value: Boolean! + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationConnection! } enum GitHubEnterpriseUserDeployment { @@ -129198,9 +125929,7 @@ type GitHubEnterpriseUserAccount implements OneGraphNode & GitHubNode & GitHubAc """ A URL pointing to the enterprise user account's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl(size: Int): String! """ Identifies the date and time when the object was created. """ @@ -129224,21 +125953,15 @@ type GitHubEnterpriseUserAccount implements OneGraphNode & GitHubNode & GitHubAc """ A list of enterprise organizations this user is a member of. """ - organizations(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - The role of the user in the enterprise organization. - """ role: GitHubEnterpriseUserAccountMembershipRole """ - Ordering options for organizations returned from the connection. - """ orderBy: GitHubOrganizationOrder """ - The search string to look for. - """ query: String): GitHubEnterpriseOrganizationMembershipConnection! + organizations( + last: Int + first: Int + before: String + after: String + role: GitHubEnterpriseUserAccountMembershipRole + orderBy: GitHubOrganizationOrder + query: String + ): GitHubEnterpriseOrganizationMembershipConnection! """ The HTTP path for this user. """ @@ -129255,9 +125978,7 @@ type GitHubEnterpriseUserAccount implements OneGraphNode & GitHubNode & GitHubAc The user within the enterprise. """ user: GitHubUser - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129324,7 +126045,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 +126062,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. """ @@ -129370,9 +126093,7 @@ type GitHubEnterprise implements OneGraphNode & GitHubNode { """ A URL pointing to the enterprise's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl(size: Int): String! """ Enterprise billing information visible to enterprise billing managers. """ @@ -129404,25 +126125,17 @@ type GitHubEnterprise implements OneGraphNode & GitHubNode { """ A list of users who are members of this enterprise. """ - members(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Only return members within the selected GitHub Enterprise deployment - """ deployment: GitHubEnterpriseUserDeployment """ - The role of the user in the enterprise organization or server. - """ role: GitHubEnterpriseUserAccountMembershipRole """ - Ordering options for members returned from the connection. - """ orderBy: GitHubEnterpriseMemberOrder """ - The search string to look for. - """ query: String """ - Only return members within the organizations with these logins - """ organizationLogins: [String!]): GitHubEnterpriseMemberConnection! + members( + last: Int + first: Int + before: String + after: String + deployment: GitHubEnterpriseUserDeployment + role: GitHubEnterpriseUserAccountMembershipRole + orderBy: GitHubEnterpriseMemberOrder + query: String + organizationLogins: [String!] + ): GitHubEnterpriseMemberConnection! """ The name of the enterprise. """ @@ -129430,19 +126143,14 @@ type GitHubEnterprise implements OneGraphNode & GitHubNode { """ A list of organizations that belong to this enterprise. """ - organizations(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for organizations returned from the connection. - """ orderBy: GitHubOrganizationOrder """ - The search string to look for. - """ query: String): GitHubOrganizationConnection! + organizations( + last: Int + first: Int + before: String + after: String + orderBy: GitHubOrganizationOrder + query: String + ): GitHubOrganizationConnection! """ Enterprise information only visible to enterprise owners. """ @@ -129462,15 +126170,7 @@ type GitHubEnterprise implements OneGraphNode & GitHubNode { """ A list of user accounts on this enterprise. """ - userAccounts(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubEnterpriseUserAccountConnection! + userAccounts(last: Int, first: Int, before: String, after: String): GitHubEnterpriseUserAccountConnection! """ Is the current viewer an admin of this enterprise? """ @@ -129479,9 +126179,7 @@ type GitHubEnterprise implements OneGraphNode & GitHubNode { The URL of the enterprise website. """ websiteUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129525,9 +126223,7 @@ type GitHubIpAllowListEntry implements OneGraphNode & GitHubNode { Identifies the date and time when the object was last updated. """ updatedAt: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129582,9 +126278,7 @@ type GitHubExternalIdentity implements OneGraphNode & GitHubNode { User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member. """ user: GitHubUser - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129638,15 +126332,7 @@ type GitHubOrganizationIdentityProvider implements OneGraphNode & GitHubNode { """ External Identities provisioned by this Identity Provider """ - externalIdentities(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubExternalIdentityConnection! + externalIdentities(last: Int, first: Int, before: String, after: String): GitHubExternalIdentityConnection! """ """ @@ -129671,9 +126357,7 @@ type GitHubOrganizationIdentityProvider implements OneGraphNode & GitHubNode { The URL endpoint for the Identity Provider's SAML SSO. """ ssoUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129712,9 +126396,7 @@ type GitHubPublicKey implements OneGraphNode & GitHubNode { Identifies the date and time when the key was updated. Keys created before March 5th, 2014 may have inaccurate values. Values will be null for keys not owned by the user. """ updatedAt: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129745,9 +126427,7 @@ type GitHubRepositoryInvitation implements OneGraphNode & GitHubNode { The Repository the user is invited to. """ repository: GitHubRepositoryInfo - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129782,9 +126462,7 @@ type GitHubSavedReply implements OneGraphNode & GitHubNode { The user that saved this reply. """ user: GitHubActor - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129887,20 +126565,14 @@ type GitHubSponsorsListing implements OneGraphNode & GitHubNode { """ The published tiers for this GitHub Sponsors listing. """ - tiers(""" - Ordering options for Sponsors tiers returned from the connection. - """ orderBy: GitHubSponsorsTierOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubSponsorsTierConnection - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + tiers( + orderBy: GitHubSponsorsTierOrder + last: Int + first: Int + before: String + after: String + ): GitHubSponsorsTierConnection + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129971,19 +126643,14 @@ type GitHubSponsorsTierAdminInfo { """ The sponsorships associated with this tier. """ - 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 """ - Whether or not to include private sponsorships in the result set - """ includePrivate: Boolean """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubSponsorshipConnection! + sponsorships( + orderBy: GitHubSponsorshipOrder + includePrivate: Boolean + last: Int + first: Int + before: String + after: String + ): GitHubSponsorshipConnection! } """ @@ -130030,9 +126697,7 @@ type GitHubSponsorsTier implements OneGraphNode & GitHubNode { Identifies the date and time when the object was last updated. """ updatedAt: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130050,33 +126715,24 @@ interface GitHubSponsorable { """ This object's sponsorships as the maintainer. """ - 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 """ - Whether or not to include private sponsorships in the result set - """ includePrivate: Boolean """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubSponsorshipConnection! + sponsorshipsAsMaintainer( + orderBy: GitHubSponsorshipOrder + includePrivate: Boolean + last: Int + first: Int + before: String + after: String + ): GitHubSponsorshipConnection! """ This object's sponsorships as the sponsor. """ - 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 """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubSponsorshipConnection! + sponsorshipsAsSponsor( + orderBy: GitHubSponsorshipOrder + last: Int + first: Int + before: String + after: String + ): GitHubSponsorshipConnection! } enum GitHubSponsorshipPrivacy { @@ -130105,7 +126761,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. """ @@ -130122,9 +126779,7 @@ type GitHubSponsorship implements OneGraphNode & GitHubNode { The associated sponsorship tier """ tier: GitHubSponsorsTier - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130211,9 +126866,7 @@ type GitHubOrgAddBillingManagerAuditEntry implements OneGraphNode & GitHubOrgani The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130311,9 +126964,7 @@ type GitHubOrgAddMemberAuditEntry implements OneGraphNode & GitHubOrganizationAu The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130412,9 +127063,7 @@ type GitHubOrgBlockUserAuditEntry implements OneGraphNode & GitHubOrganizationAu The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130497,9 +127146,7 @@ type GitHubOrgConfigDisableCollaboratorsOnlyAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130582,9 +127229,7 @@ type GitHubOrgConfigEnableCollaboratorsOnlyAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130694,9 +127339,7 @@ type GitHubOrgCreateAuditEntry implements OneGraphNode & GitHubOrganizationAudit The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130779,9 +127422,7 @@ type GitHubOrgDisableOauthAppRestrictionsAuditEntry implements OneGraphNode & Gi The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130880,9 +127521,7 @@ type GitHubOrgDisableSamlAuditEntry implements OneGraphNode & GitHubOrganization The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130965,9 +127604,7 @@ type GitHubOrgDisableTwoFactorRequirementAuditEntry implements OneGraphNode & Gi The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131050,9 +127687,7 @@ type GitHubOrgEnableOauthAppRestrictionsAuditEntry implements OneGraphNode & Git The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131151,9 +127786,7 @@ type GitHubOrgEnableSamlAuditEntry implements OneGraphNode & GitHubOrganizationA The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131236,9 +127869,7 @@ type GitHubOrgEnableTwoFactorRequirementAuditEntry implements OneGraphNode & Git The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131329,9 +127960,7 @@ type GitHubOrgInviteMemberAuditEntry implements OneGraphNode & GitHubOrganizatio The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131457,9 +128086,7 @@ type GitHubOauthApplicationCreateAuditEntry implements OneGraphNode & GitHubOrga The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131554,9 +128181,7 @@ type GitHubOrgOauthAppAccessApprovedAuditEntry implements OneGraphNode & GitHubO The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131651,9 +128276,7 @@ type GitHubOrgOauthAppAccessDeniedAuditEntry implements OneGraphNode & GitHubOrg The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131766,9 +128389,7 @@ type GitHubOrgOauthAppAccessRequestedAuditEntry implements OneGraphNode & GitHub The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131870,9 +128491,7 @@ type GitHubOrgRemoveBillingManagerAuditEntry implements OneGraphNode & GitHubOrg The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132001,9 +128620,7 @@ type GitHubOrgRemoveMemberAuditEntry implements OneGraphNode & GitHubOrganizatio The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132120,9 +128737,7 @@ type GitHubOrgRemoveOutsideCollaboratorAuditEntry implements OneGraphNode & GitH The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132304,9 +128919,7 @@ type GitHubOrgRestoreMemberAuditEntry implements OneGraphNode & GitHubOrganizati The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132405,9 +129018,7 @@ type GitHubOrgUnblockUserAuditEntry implements OneGraphNode & GitHubOrganization The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132517,9 +129128,7 @@ type GitHubOrgUpdateDefaultRepositoryPermissionAuditEntry implements OneGraphNod The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132621,9 +129230,7 @@ type GitHubOrgUpdateMemberAuditEntry implements OneGraphNode & GitHubOrganizatio The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132725,9 +129332,7 @@ type GitHubOrgUpdateMemberRepositoryCreationPermissionAuditEntry implements OneG The permission for visibility level of repositories for this organization. """ visibility: GitHubOrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132814,9 +129419,7 @@ type GitHubOrgUpdateMemberRepositoryInvitationPermissionAuditEntry implements On The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132934,9 +129537,7 @@ type GitHubRepoAccessAuditEntry implements OneGraphNode & GitHubRepositoryAuditE The visibility of the repository """ visibility: GitHubRepoAccessAuditEntryVisibility - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133054,9 +129655,7 @@ type GitHubRepoAddMemberAuditEntry implements OneGraphNode & GitHubRepositoryAud The visibility of the repository """ visibility: GitHubRepoAddMemberAuditEntryVisibility - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133174,9 +129773,7 @@ type GitHubRepoArchivedAuditEntry implements OneGraphNode & GitHubRepositoryAudi The visibility of the repository """ visibility: GitHubRepoArchivedAuditEntryVisibility - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133298,9 +129895,7 @@ type GitHubRepoChangeMergeSettingAuditEntry implements OneGraphNode & GitHubRepo The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133399,9 +129994,7 @@ type GitHubRepoConfigDisableAnonymousGitAccessAuditEntry implements OneGraphNode The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133500,9 +130093,7 @@ type GitHubRepoConfigDisableCollaboratorsOnlyAuditEntry implements OneGraphNode The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133601,9 +130192,7 @@ type GitHubRepoConfigDisableContributorsOnlyAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133702,9 +130291,7 @@ type GitHubRepoConfigDisableSockpuppetDisallowedAuditEntry implements OneGraphNo The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133803,9 +130390,7 @@ type GitHubRepoConfigEnableAnonymousGitAccessAuditEntry implements OneGraphNode The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133904,9 +130489,7 @@ type GitHubRepoConfigEnableCollaboratorsOnlyAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134005,9 +130588,7 @@ type GitHubRepoConfigEnableContributorsOnlyAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134106,9 +130687,7 @@ type GitHubRepoConfigEnableSockpuppetDisallowedAuditEntry implements OneGraphNod The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134207,9 +130786,7 @@ type GitHubRepoConfigLockAnonymousGitAccessAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134308,9 +130885,7 @@ type GitHubRepoConfigUnlockAnonymousGitAccessAuditEntry implements OneGraphNode The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134436,9 +131011,7 @@ type GitHubRepoCreateAuditEntry implements OneGraphNode & GitHubRepositoryAuditE The visibility of the repository """ visibility: GitHubRepoCreateAuditEntryVisibility - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134556,9 +131129,7 @@ type GitHubRepoDestroyAuditEntry implements OneGraphNode & GitHubRepositoryAudit The visibility of the repository """ visibility: GitHubRepoDestroyAuditEntryVisibility - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134676,9 +131247,7 @@ type GitHubRepoRemoveMemberAuditEntry implements OneGraphNode & GitHubRepository The visibility of the repository """ visibility: GitHubRepoRemoveMemberAuditEntryVisibility - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134773,9 +131342,7 @@ type GitHubMembersCanDeleteReposClearAuditEntry implements OneGraphNode & GitHub The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134870,9 +131437,7 @@ type GitHubMembersCanDeleteReposDisableAuditEntry implements OneGraphNode & GitH The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134967,9 +131532,7 @@ type GitHubMembersCanDeleteReposEnableAuditEntry implements OneGraphNode & GitHu The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135064,9 +131627,7 @@ type GitHubOrgInviteToBusinessAuditEntry implements OneGraphNode & GitHubOrganiz The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135177,9 +131738,7 @@ type GitHubPrivateRepositoryForkingDisableAuditEntry implements OneGraphNode & G The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135290,9 +131849,7 @@ type GitHubPrivateRepositoryForkingEnableAuditEntry implements OneGraphNode & Gi The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135387,9 +131944,7 @@ type GitHubRepositoryVisibilityChangeDisableAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135502,9 +132057,7 @@ type GitHubRepositoryVisibilityChangeEnableAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135607,9 +132160,7 @@ type GitHubTeamAddMemberAuditEntry implements OneGraphNode & GitHubTeamAuditEntr The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135774,9 +132325,7 @@ type GitHubRepoAddTopicAuditEntry implements OneGraphNode & GitHubTopicAuditEntr The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135897,9 +132446,7 @@ type GitHubRepoRemoveTopicAuditEntry implements OneGraphNode & GitHubTopicAuditE The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136040,9 +132587,7 @@ type GitHubTeamAddRepositoryAuditEntry implements OneGraphNode & GitHubTeamAudit The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136199,9 +132744,7 @@ type GitHubTeamChangeParentTeamAuditEntry implements OneGraphNode & GitHubTeamAu The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136383,9 +132926,7 @@ type GitHubTeamRemoveMemberAuditEntry implements OneGraphNode & GitHubTeamAuditE The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136412,9 +132953,7 @@ type GitHubBaseRefChangedEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136558,15 +133097,7 @@ type GitHubStatusCheckRollup implements OneGraphNode & GitHubNode { """ A list of status contexts and check runs for this commit. """ - contexts(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubStatusCheckRollupContextConnection! + contexts(last: Int, first: Int, before: String, after: String): GitHubStatusCheckRollupContextConnection! """ """ @@ -136575,9 +133106,7 @@ type GitHubStatusCheckRollup implements OneGraphNode & GitHubNode { The combined status for the commit. """ state: GitHubStatusState! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136619,9 +133148,7 @@ type GitHubStatusContext implements OneGraphNode & GitHubNode { """ The avatar of the OAuth application or the user that created the status """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String + avatarUrl(size: Int): String """ This commit this status context is attached to. """ @@ -136654,9 +133181,7 @@ type GitHubStatusContext implements OneGraphNode & GitHubNode { The URL for this status context. """ targetUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136674,9 +133199,7 @@ type GitHubStatus implements OneGraphNode & GitHubNode { """ Looks up an individual status context by context name. """ - context(""" - The context name. - """ name: String!): GitHubStatusContext + context(name: String!): GitHubStatusContext """ The individual status contexts for this commit. """ @@ -136689,9 +133212,7 @@ type GitHubStatus implements OneGraphNode & GitHubNode { The combined commit status. """ state: GitHubStatusState! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -137423,9 +133944,7 @@ type GitHubReviewRequest implements OneGraphNode & GitHubNode { The reviewer that is requested. """ requestedReviewer: GitHubRequestedReviewer - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -137584,27 +134103,19 @@ interface GitHubRegistryPackageOwner { """ A list of registry packages under the owner. """ - registryPackages(""" - Filter registry package by whether it is publicly visible - """ publicOnly: Boolean """ - Filter registry package by type (string). - """ registryPackageType: String """ - Filter registry package by type. - """ packageType: GitHubRegistryPackageType """ - Find registry packages in a repository. - """ repositoryId: ID """ - Find registry packages by their names. - """ names: [String] """ - Find registry package by name. - """ name: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ 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.") + registryPackages( + publicOnly: Boolean + registryPackageType: String + packageType: GitHubRegistryPackageType + repositoryId: ID + names: [String] + name: String + last: Int + first: Int + before: String + after: String + ): GitHubRegistryPackageConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageOwner` object instead. Removal on 2020-04-01 UTC.") } """ @@ -137618,19 +134129,15 @@ interface GitHubRegistryPackageSearch { """ A list of registry packages for a particular search query. """ - registryPackagesForQuery(""" - Filter registry package by type. - """ packageType: GitHubRegistryPackageType """ - Find registry package by search query. - """ query: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ 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.") + registryPackagesForQuery( + packageType: GitHubRegistryPackageType + query: String + last: Int + first: Int + before: String + after: String + ): GitHubRegistryPackageConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageSearch` object instead. Removal on 2020-04-01 UTC.") } """ @@ -137732,9 +134239,7 @@ interface GitHubRepositoryInfo { """ A description of the repository, rendered to HTML without any links in it. """ - shortDescriptionHTML(""" - How many characters to return. - """ limit: Int): String! + shortDescriptionHTML(limit: Int): String! """ Identifies the date and time when the object was last updated. """ @@ -138010,14 +134515,14 @@ 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.") - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + version: GitHubRegistryPackageVersion + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageTag` object instead. Removal on 2020-04-01 UTC.") + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -138067,23 +134572,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 +134670,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 +134737,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 +134746,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,10 +134785,9 @@ 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.") - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + url: String! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -138306,7 +134828,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,14 +134837,14 @@ 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.") - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + version: String! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageDependency` object instead. Removal on 2020-04-01 UTC.") + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -138371,35 +134894,24 @@ type GitHubRegistryPackageVersion implements OneGraphNode & GitHubNode { """ list of dependencies for this package """ - dependencies(""" - Find dependencies by type. - """ type: GitHubRegistryPackageDependencyType """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ 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.") + dependencies( + type: GitHubRegistryPackageDependencyType + last: Int + first: Int + before: String + 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.") + fileByName(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 """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ 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.") + files(last: Int, first: Int, before: String, after: String): GitHubRegistryPackageFileConnection! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") """ """ @@ -138407,66 +134919,79 @@ 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.") - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + viewerCanEdit: Boolean! + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -138480,7 +135005,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,128 +135014,95 @@ 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.") + packageFileByGuid(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.") + packageFileBySha256(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 """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ 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.") + preReleaseVersions(last: Int, first: Int, before: String, 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 """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ 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.") + tags(last: Int, first: Int, before: String, 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 """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ 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.") + topics(last: Int, first: Int, before: String, 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(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! """ - 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.") + versionByPlatform(platform: String!, 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.") + versionBySha256(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 """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ 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.") + versions(last: Int, first: Int, before: String, 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 """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ 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.") - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + versionsByMetadatum( + last: Int + first: Int + before: String + after: String + metadatum: GitHubRegistryPackageMetadatum! + ): GitHubRegistryPackageVersionConnection + @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `Package` object instead. Removal on 2020-04-01 UTC.") + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -138786,9 +135279,7 @@ type GitHubBlob implements OneGraphNode & GitHubNode & GitHubGitObject { UTF8 text data or null if the Blob is binary """ text: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -138802,9 +135293,7 @@ type GitHubGitActor { """ A URL pointing to the author's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl(size: Int): String! """ The timestamp of the Git action (authoring or committing). """ @@ -138867,9 +135356,7 @@ type GitHubTag implements OneGraphNode & GitHubNode & GitHubGitObject { The Git object the tag points to. """ target: GitHubGitObject! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -138968,9 +135455,7 @@ type GitHubTree implements OneGraphNode & GitHubNode & GitHubGitObject { The Repository the Git object belongs to """ repository: GitHubRepository! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -139177,9 +135662,7 @@ type GitHubLicense implements OneGraphNode & GitHubNode { URL to the license on """ url: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -139496,9 +135979,7 @@ type GitHubDeployKey implements OneGraphNode & GitHubNode { Whether or not the deploy key has been verified. """ verified: Boolean! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -139665,9 +136146,7 @@ type GitHubCodeOfConduct implements OneGraphNode & GitHubNode { The HTTP URL for this Code of Conduct """ url: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -139690,9 +136169,7 @@ type GitHubReviewDismissalAllowance implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -139742,17 +136219,13 @@ interface GitHubMemberStatusable { """ Get the status messages members of this entity have set that are either public or visible only to the organization. """ - memberStatuses(""" - Ordering options for user statuses returned from the connection. - """ orderBy: GitHubUserStatusOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserStatusConnection! + memberStatuses( + orderBy: GitHubUserStatusOrder + last: Int + first: Int + before: String + after: String + ): GitHubUserStatusConnection! } """ @@ -139788,9 +136261,7 @@ type GitHubReadyForReviewEvent implements OneGraphNode & GitHubUniformResourceLo The HTTP URL for this ready for review event. """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -139845,9 +136316,7 @@ type GitHubReleaseAsset implements OneGraphNode & GitHubNode { Identifies the URL of the release asset. """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -139933,17 +136402,13 @@ type GitHubRelease implements OneGraphNode & GitHubUniformResourceLocatable & Gi """ List of releases assets which are dependent on this release. """ - releaseAssets(""" - A list of names to filter the assets by. - """ name: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubReleaseAssetConnection! + releaseAssets( + name: String + last: Int + first: Int + before: String + after: String + ): GitHubReleaseAssetConnection! """ The HTTP path for this issue """ @@ -139951,9 +136416,7 @@ type GitHubRelease implements OneGraphNode & GitHubUniformResourceLocatable & Gi """ A description of the release, rendered to HTML without any links in it. """ - shortDescriptionHTML(""" - How many characters to return. - """ limit: Int): String + shortDescriptionHTML(limit: Int): String """ The Git tag the release points to """ @@ -139970,9 +136433,7 @@ type GitHubRelease implements OneGraphNode & GitHubUniformResourceLocatable & Gi The HTTP URL for this issue """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -139999,9 +136460,7 @@ type GitHubRepositoryTopic implements OneGraphNode & GitHubUniformResourceLocata The HTTP URL for this repository-topic. """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -140053,9 +136512,7 @@ type GitHubMarketplaceCategory implements OneGraphNode & GitHubNode { The HTTP URL for this Marketplace category. """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -140089,9 +136546,7 @@ type GitHubApp implements OneGraphNode & GitHubNode { """ A URL pointing to the app's logo. """ - logoUrl(""" - The size of the resulting image. - """ size: Int): String! + logoUrl(size: Int): String! """ The name of the app. """ @@ -140108,9 +136563,7 @@ type GitHubApp implements OneGraphNode & GitHubNode { The URL to the app's homepage. """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -140160,7 +136613,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 +136646,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 +136655,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. """ @@ -140244,9 +136700,7 @@ type GitHubMarketplaceListing implements OneGraphNode & GitHubNode { """ URL for the listing's logo image. """ - logoUrl(""" - The size in pixels of the resulting square image. - """ size: Int): String + logoUrl(size: Int): String """ The listing's full name. """ @@ -140360,9 +136814,7 @@ type GitHubMarketplaceListing implements OneGraphNode & GitHubNode { Does the current viewer role allow them to administer this Marketplace listing. """ viewerIsListingAdmin: Boolean! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -143452,7 +139904,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 { @@ -146391,15 +142848,12 @@ type IntercomAdmin implements IntercomAuthor { Conversation are how you can communicate with users in Intercom. """ - conversations(""" - When true, retrieves conversation messages in plain text. Defaults to false. - """ displayAsPlaintext: Boolean """ - Defaults to true. When true, fetches just open conversations. When false, fetches just closed conversations. - """ open: Boolean """ - What field to sort the results by. Defaults to UPDATED_AT. - """ sortByField: IntercomConversationSortByField """ - Return the conversations in ascending or descending order. Defaults to DESC. - """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection + conversations( + displayAsPlaintext: Boolean + open: Boolean + sortByField: IntercomConversationSortByField + orderBy: IntercomSortOrderBy + ): IntercomConversationsConnection } """ @@ -160779,22 +157233,15 @@ type SalesforceContentBody { """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection + customFields(fields: [String!]): JSON! } """ @@ -161510,12 +157957,8 @@ type SalesforceStreamingChannelShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161582,12 +158025,8 @@ type SalesforceCaseComment implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161618,12 +158057,8 @@ type SalesforceContentUserSubscription implements OneGraphNode { User ID """ subscribedToUser: SalesforceUser! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161698,12 +158133,8 @@ type SalesforceApexComponent implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161760,12 +158191,8 @@ type SalesforceMacroShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161808,12 +158235,8 @@ type SalesforceUserLogin implements OneGraphNode { Last Modified By ID """ lastModifiedBy: SalesforceUser! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161924,12 +158347,8 @@ type SalesforceApexTrigger implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161998,12 +158417,8 @@ type SalesforceAccountShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162060,12 +158475,8 @@ type SalesforceUserAppMenuCustomizationShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162236,12 +158647,8 @@ type SalesforceAppMenuItem implements OneGraphNode { Is Accessible """ isAccessible: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162298,12 +158705,8 @@ type SalesforceUserProvisioningRequestShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162362,12 +158765,8 @@ type SalesforceApexEmailNotification implements OneGraphNode { email """ email: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162418,12 +158817,8 @@ type SalesforceContactHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162474,12 +158869,8 @@ type SalesforceContentVersionHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162534,12 +158925,8 @@ type SalesforceAssignmentRule implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162596,12 +158983,8 @@ type SalesforceFlowInterviewShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162658,12 +159041,8 @@ type SalesforceOrgDeleteRequestShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162720,12 +159099,8 @@ type SalesforceQuickTextShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162788,12 +159163,8 @@ type SalesforceLeadStatus implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162848,12 +159219,8 @@ type SalesforceOrgWideEmailAddress implements OneGraphNode { Allow All Profiles """ isAllowAllProfiles: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162892,12 +159259,8 @@ type SalesforceKnowledgeableUser implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162944,12 +159307,8 @@ type SalesforceSetupAuditTrail implements OneGraphNode { Source Namespace Prefix """ responsibleNamespacePrefix: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163024,12 +159383,8 @@ type SalesforceCspTrustedSite implements OneGraphNode { Active """ isActive: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163052,12 +159407,8 @@ type SalesforceContentTagSubscription implements OneGraphNode { User ID """ user: SalesforceUser - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163176,12 +159527,8 @@ type SalesforceBusinessHours implements OneGraphNode { Last Viewed Date """ lastViewedDate: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163220,12 +159567,8 @@ type SalesforceTopicUserEvent implements OneGraphNode { Create Date """ createdDate: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163296,12 +159639,8 @@ type SalesforceSecurityCustomBaseline implements OneGraphNode { Is Default Baseline """ isDefault: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163352,12 +159691,8 @@ type SalesforceLeadHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163420,12 +159755,8 @@ type SalesforceTaskPriority implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163464,12 +159795,8 @@ type SalesforceQueueSobject implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163641,12 +159968,8 @@ type SalesforceAdditionalNumber implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163734,41 +160057,27 @@ type SalesforceCallCenter implements OneGraphNode { """ Collection of Salesforce AdditionalNumber """ - additionalNumbers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAdditionalNumberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAdditionalNumberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAdditionalNumberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AdditionalNumbers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAdditionalNumbersConnection + additionalNumbers( + filter: SalesforceAdditionalNumberConnectionFilter + sortByCustomField: SalesforceAdditionalNumberSortByFieldEnum + sortByField: SalesforceAdditionalNumberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAdditionalNumbersConnection """ Collection of Salesforce User """ - users(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Users to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUsersConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + users( + filter: SalesforceUserConnectionFilter + sortByCustomField: SalesforceUserSortByFieldEnum + sortByField: SalesforceUserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUsersConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163845,12 +160154,8 @@ type SalesforceCaseTeamMember implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163937,12 +160242,8 @@ type SalesforceMailmergeTemplate implements OneGraphNode { Flash Injection was detected in the attachment """ securityOptionsAttachmentHasFlash: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163977,12 +160278,8 @@ type SalesforceUserPreference implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164033,12 +160330,8 @@ type SalesforceAccountHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164125,12 +160418,8 @@ type SalesforceEventLogFile implements OneGraphNode { Log File """ logFile: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164209,12 +160498,8 @@ type SalesforceEmailCapture implements OneGraphNode { Raw Message """ rawMessage: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164297,12 +160582,8 @@ type SalesforceOpportunityStage implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164627,25 +160908,16 @@ type SalesforceActionLinkGroupTemplate implements OneGraphNode { """ Collection of Salesforce ActionLinkTemplate """ - actionLinkTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceActionLinkTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceActionLinkTemplateSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceActionLinkTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ActionLinkTemplates to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceActionLinkTemplatesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + actionLinkTemplates( + filter: SalesforceActionLinkTemplateConnectionFilter + sortByCustomField: SalesforceActionLinkTemplateSortByFieldEnum + sortByField: SalesforceActionLinkTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceActionLinkTemplatesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164748,12 +161020,8 @@ type SalesforceActionLinkTemplate implements OneGraphNode { HTTP Headers """ headers: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164810,12 +161078,8 @@ type SalesforceContactShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164872,12 +161136,8 @@ type SalesforceUserShare implements OneGraphNode { Active """ isActive: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165105,25 +161365,16 @@ type SalesforcePackageLicense implements OneGraphNode { """ Collection of Salesforce UserPackageLicense """ - userPackageLicenses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserPackageLicenseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserPackageLicenseSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserPackageLicenseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserPackageLicenses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserPackageLicensesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userPackageLicenses( + filter: SalesforceUserPackageLicenseConnectionFilter + sortByCustomField: SalesforceUserPackageLicenseSortByFieldEnum + sortByField: SalesforceUserPackageLicenseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserPackageLicensesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165182,12 +161433,8 @@ type SalesforceUserPackageLicense implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165246,12 +161493,8 @@ type SalesforcePartnerRole implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165290,12 +161533,8 @@ type SalesforceClientBrowser implements OneGraphNode { Created Date """ createdDate: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165326,12 +161565,8 @@ type SalesforceContentWorkspaceSubscription implements OneGraphNode { Workspace ID """ contentWorkspace: SalesforceContentWorkspace! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165426,12 +161661,8 @@ type SalesforceTenantUsageEntitlement implements OneGraphNode { Setting Label """ masterLabel: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165482,12 +161713,8 @@ type SalesforceContentDocumentHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165544,12 +161771,8 @@ type SalesforceListEmailShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165864,25 +162087,16 @@ type SalesforcePeriod implements OneGraphNode { """ Collection of Salesforce FiscalYearSettings """ - fiscalYearSettingsPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFiscalYearSettingsConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFiscalYearSettingsSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFiscalYearSettingsSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FiscalYearSettings to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFiscalYearSettingssConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + fiscalYearSettingsPlural( + filter: SalesforceFiscalYearSettingsConnectionFilter + sortByCustomField: SalesforceFiscalYearSettingsSortByFieldEnum + sortByField: SalesforceFiscalYearSettingsSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFiscalYearSettingssConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165960,25 +162174,16 @@ type SalesforceFiscalYearSettings implements OneGraphNode { """ Collection of Salesforce Period """ - periods(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePeriodConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePeriodSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePeriodSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Periods to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePeriodsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + periods( + filter: SalesforcePeriodConnectionFilter + sortByCustomField: SalesforcePeriodSortByFieldEnum + sortByField: SalesforcePeriodSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePeriodsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166035,12 +162240,8 @@ type SalesforceTodayGoalShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166103,12 +162304,8 @@ type SalesforceSolutionStatus implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166345,12 +162542,8 @@ type SalesforceCronTrigger implements OneGraphNode { Job Fired Count """ timesTriggered: Int - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166398,25 +162591,16 @@ type SalesforceCronJobDetail implements OneGraphNode { """ Collection of Salesforce CronTrigger """ - cronTriggers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCronTriggerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCronTriggerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCronTriggerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CronTriggers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCronTriggersConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + cronTriggers( + filter: SalesforceCronTriggerConnectionFilter + sortByCustomField: SalesforceCronTriggerSortByFieldEnum + sortByField: SalesforceCronTriggerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCronTriggersConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166473,12 +162657,8 @@ type SalesforceCaseShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166521,12 +162701,8 @@ type SalesforceLoginIp implements OneGraphNode { Challenge Method """ challengeMethod: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166597,12 +162773,8 @@ type SalesforceEmailDomainKey implements OneGraphNode { Private Key """ privateKey: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166649,12 +162821,8 @@ type SalesforceChatterActivity implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166705,12 +162873,8 @@ type SalesforceCaseHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166800,25 +162964,16 @@ type SalesforceListViewChart implements OneGraphNode { """ Collection of Salesforce UserListView """ - userListViews(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserListViewConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserListViewSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserListViewSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserListViews to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserListViewsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userListViews( + filter: SalesforceUserListViewConnectionFilter + sortByCustomField: SalesforceUserListViewSortByFieldEnum + sortByField: SalesforceUserListViewSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserListViewsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166873,12 +163028,8 @@ type SalesforceCaseTeamRole implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166947,12 +163098,8 @@ type SalesforceCaseTeamTemplateMember implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166989,12 +163136,8 @@ type SalesforceGroupMember implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167045,12 +163188,8 @@ type SalesforceCaseTeamTemplate implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167097,12 +163236,8 @@ type SalesforceCaseTeamTemplateRecord implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167169,12 +163304,8 @@ type SalesforceCorsWhitelistEntry implements OneGraphNode { Origin URL Pattern """ urlPattern: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167231,12 +163362,8 @@ type SalesforceLeadShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167516,25 +163643,16 @@ type SalesforcePlatformCachePartition implements OneGraphNode { """ Collection of Salesforce PlatformCachePartitionType """ - platforCachePartitionTypes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePlatformCachePartitionTypeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePlatformCachePartitionTypeSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PlatformCachePartitionTypes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePlatformCachePartitionTypesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + platforCachePartitionTypes( + filter: SalesforcePlatformCachePartitionTypeConnectionFilter + sortByCustomField: SalesforcePlatformCachePartitionTypeSortByFieldEnum + sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePlatformCachePartitionTypesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167605,12 +163723,8 @@ type SalesforcePlatformCachePartitionType implements OneGraphNode { Allocated Trial Capacity """ allocatedTrialCapacity: Int - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167673,12 +163787,8 @@ type SalesforceContractStatus implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167741,12 +163851,8 @@ type SalesforceCaseStatus implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167849,12 +163955,8 @@ type SalesforceHoliday implements OneGraphNode { Recurrence Month of Year """ recurrenceMonthOfYear: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168170,25 +164272,16 @@ type SalesforceMatchingRule implements OneGraphNode { """ Collection of Salesforce MatchingRuleItem """ - matchingRuleItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMatchingRuleItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMatchingRuleItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMatchingRuleItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of MatchingRuleItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMatchingRuleItemsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + matchingRuleItems( + filter: SalesforceMatchingRuleItemConnectionFilter + sortByCustomField: SalesforceMatchingRuleItemSortByFieldEnum + sortByField: SalesforceMatchingRuleItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMatchingRuleItemsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168259,12 +164352,8 @@ type SalesforceMatchingRuleItem implements OneGraphNode { Blank Value Behavior """ blankValueBehavior: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168327,12 +164416,8 @@ type SalesforceTaskStatus implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168490,12 +164575,8 @@ type SalesforceSecureAgentPluginProperty implements OneGraphNode { Property Value """ propertyValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168936,25 +165017,16 @@ type SalesforceSecureAgentsCluster implements OneGraphNode { """ Collection of Salesforce SecureAgent """ - secureAgents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecureAgentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SecureAgents to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSecureAgentsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + secureAgents( + filter: SalesforceSecureAgentConnectionFilter + sortByCustomField: SalesforceSecureAgentSortByFieldEnum + sortByField: SalesforceSecureAgentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSecureAgentsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169040,25 +165112,16 @@ type SalesforceSecureAgent implements OneGraphNode { """ Collection of Salesforce SecureAgentPlugin """ - secureAgentPlugins(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentPluginConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecureAgentPluginSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentPluginSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SecureAgentPlugins to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSecureAgentPluginsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + secureAgentPlugins( + filter: SalesforceSecureAgentPluginConnectionFilter + sortByCustomField: SalesforceSecureAgentPluginSortByFieldEnum + sortByField: SalesforceSecureAgentPluginSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSecureAgentPluginsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169136,25 +165199,16 @@ type SalesforceSecureAgentPlugin implements OneGraphNode { """ Collection of Salesforce SecureAgentPluginProperty """ - secureAgentPluginProperties(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentPluginPropertyConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecureAgentPluginPropertySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SecureAgentPluginProperties to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSecureAgentPluginPropertysConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + secureAgentPluginProperties( + filter: SalesforceSecureAgentPluginPropertyConnectionFilter + sortByCustomField: SalesforceSecureAgentPluginPropertySortByFieldEnum + sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSecureAgentPluginPropertysConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169407,12 +165461,8 @@ type SalesforceLightningComponentResource implements OneGraphNode { Source """ source: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169516,25 +165566,16 @@ type SalesforceLightningComponentBundle implements OneGraphNode { """ Collection of Salesforce LightningComponentResource """ - lightningComponentResources(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLightningComponentResourceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLightningComponentResourceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLightningComponentResourceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LightningComponentResources to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLightningComponentResourcesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + lightningComponentResources( + filter: SalesforceLightningComponentResourceConnectionFilter + sortByCustomField: SalesforceLightningComponentResourceSortByFieldEnum + sortByField: SalesforceLightningComponentResourceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLightningComponentResourcesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169720,12 +165761,8 @@ type SalesforceChatterExtensionConfig implements OneGraphNode { Position """ position: Int - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -170634,12 +166671,8 @@ type SalesforceSolutionHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -171084,41 +167117,27 @@ type SalesforceCategoryNode implements OneGraphNode { """ Collection of Salesforce CategoryData """ - categoryDatas(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCategoryDataConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCategoryDataSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCategoryDataSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CategoryDatas to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCategoryDatasConnection + categoryDatas( + filter: SalesforceCategoryDataConnectionFilter + sortByCustomField: SalesforceCategoryDataSortByFieldEnum + sortByField: SalesforceCategoryDataSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCategoryDatasConnection """ Collection of Salesforce CategoryNode """ - categoryNodes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCategoryNodeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCategoryNodeSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCategoryNodeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CategoryNodes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCategoryNodesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + categoryNodes( + filter: SalesforceCategoryNodeConnectionFilter + sortByCustomField: SalesforceCategoryNodeSortByFieldEnum + sortByField: SalesforceCategoryNodeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCategoryNodesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -171181,12 +167200,8 @@ type SalesforceCategoryData implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -171560,12 +167575,8 @@ type SalesforceProduct2History implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -171858,25 +167869,16 @@ type SalesforceStaticResource implements OneGraphNode { """ Collection of Salesforce ExternalDataSource """ - externalDataSources(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataSourceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataSourceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceExternalDataSourcesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + externalDataSources( + filter: SalesforceExternalDataSourceConnectionFilter + sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum + sortByField: SalesforceExternalDataSourceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceExternalDataSourcesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -172178,12 +168180,8 @@ type SalesforceTransactionSecurityPolicy implements OneGraphNode { Description """ description: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -172416,25 +168414,16 @@ type SalesforceApexTestSuite implements OneGraphNode { """ Collection of Salesforce TestSuiteMembership """ - apexClassJunctions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTestSuiteMembershipConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TestSuiteMemberships to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTestSuiteMembershipsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + apexClassJunctions( + filter: SalesforceTestSuiteMembershipConnectionFilter + sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum + sortByField: SalesforceTestSuiteMembershipSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTestSuiteMembershipsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -172497,12 +168486,8 @@ type SalesforceTestSuiteMembership implements OneGraphNode { Class ID """ apexClass: SalesforceApexClass! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -173157,12 +169142,8 @@ type SalesforceEmailServicesAddress implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -173294,25 +169275,16 @@ type SalesforceEmailServicesFunction implements OneGraphNode { """ Collection of Salesforce EmailServicesAddress """ - addresses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailServicesAddressConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailServicesAddressSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailServicesAddressSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailServicesAddresses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailServicesAddresssConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + addresses( + filter: SalesforceEmailServicesAddressConnectionFilter + sortByCustomField: SalesforceEmailServicesAddressSortByFieldEnum + sortByField: SalesforceEmailServicesAddressSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailServicesAddresssConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -173900,25 +169872,16 @@ type SalesforceAccountCleanInfo implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -173992,25 +169955,16 @@ type SalesforceAccountContactRole implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -174342,41 +170296,27 @@ type SalesforceBackgroundOperation implements OneGraphNode { """ Collection of Salesforce BackgroundOperation """ - mergedOperations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBackgroundOperationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceBackgroundOperationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBackgroundOperationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of BackgroundOperations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceBackgroundOperationsConnection + mergedOperations( + filter: SalesforceBackgroundOperationConnectionFilter + sortByCustomField: SalesforceBackgroundOperationSortByFieldEnum + sortByField: SalesforceBackgroundOperationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceBackgroundOperationsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -174446,25 +170386,16 @@ type SalesforceCaseContactRole implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -174518,25 +170449,16 @@ type SalesforceCaseSolution implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -174778,25 +170700,16 @@ type SalesforceContactCleanInfo implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -174838,25 +170751,16 @@ type SalesforceContentDocumentSubscription implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -175149,25 +171053,16 @@ type SalesforceContentFolderLink implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -175379,12 +171274,8 @@ type SalesforceContentFolderItem implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -175519,105 +171410,71 @@ type SalesforceContentFolder implements OneGraphNode { """ Collection of Salesforce ContentFolder """ - contentFolders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentFolders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentFoldersConnection + contentFolders( + filter: SalesforceContentFolderConnectionFilter + sortByCustomField: SalesforceContentFolderSortByFieldEnum + sortByField: SalesforceContentFolderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentFoldersConnection """ Collection of Salesforce ContentFolderItem """ - contentFolderItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentFolderItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentFolderItemsConnection + contentFolderItems( + filter: SalesforceContentFolderItemConnectionFilter + sortByCustomField: SalesforceContentFolderItemSortByFieldEnum + sortByField: SalesforceContentFolderItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentFolderItemsConnection """ Collection of Salesforce ContentFolderLink """ - contentFolderLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentFolderLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentFolderLinksConnection + contentFolderLinks( + filter: SalesforceContentFolderLinkConnectionFilter + sortByCustomField: SalesforceContentFolderLinkSortByFieldEnum + sortByField: SalesforceContentFolderLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentFolderLinksConnection """ Collection of Salesforce ContentFolderMember """ - contentFolderMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentFolderMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentFolderMembersConnection + contentFolderMembers( + filter: SalesforceContentFolderMemberConnectionFilter + sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum + sortByField: SalesforceContentFolderMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentFolderMembersConnection """ Collection of Salesforce ContentWorkspace """ - contentWorkspaces(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentWorkspaces to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspacesConnection + contentWorkspaces( + filter: SalesforceContentWorkspaceConnectionFilter + sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum + sortByField: SalesforceContentWorkspaceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspacesConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -175683,25 +171540,16 @@ type SalesforceContentFolderMember implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -175957,12 +171805,8 @@ type SalesforceContentWorkspaceMember implements OneGraphNode { Created Date """ createdDate: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -176198,41 +172042,27 @@ type SalesforceContentWorkspacePermission implements OneGraphNode { """ Collection of Salesforce ContentNotification """ - contentNotifications(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentNotificationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentNotificationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentNotificationsConnection + contentNotifications( + filter: SalesforceContentNotificationConnectionFilter + sortByCustomField: SalesforceContentNotificationSortByFieldEnum + sortByField: SalesforceContentNotificationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentNotificationsConnection """ Collection of Salesforce ContentWorkspaceMember """ - contentWorkspaceMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspaceMembersConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + contentWorkspaceMembers( + filter: SalesforceContentWorkspaceMemberConnectionFilter + sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum + sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspaceMembersConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -176288,25 +172118,16 @@ type SalesforceContentNotification implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -176348,25 +172169,16 @@ type SalesforceContentVersionComment implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -176412,25 +172224,16 @@ type SalesforceContentVersionRating implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -176480,25 +172283,16 @@ type SalesforceContentWorkspaceDoc implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -177093,57 +172887,38 @@ type SalesforceDandBCompany implements OneGraphNode { """ Collection of Salesforce Account """ - accounts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Accounts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountsConnection + accounts( + filter: SalesforceAccountConnectionFilter + sortByCustomField: SalesforceAccountSortByFieldEnum + sortByField: SalesforceAccountSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Lead """ - leads(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Leads to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + leads( + filter: SalesforceLeadConnectionFilter + sortByCustomField: SalesforceLeadSortByFieldEnum + sortByField: SalesforceLeadSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -177572,41 +173347,27 @@ type SalesforceDataAssessmentMetric implements OneGraphNode { """ Collection of Salesforce DataAssessmentFieldMetric """ - dataAssessmentMetrics(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentFieldMetricConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDataAssessmentFieldMetricSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DataAssessmentFieldMetrics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDataAssessmentFieldMetricsConnection + dataAssessmentMetrics( + filter: SalesforceDataAssessmentFieldMetricConnectionFilter + sortByCustomField: SalesforceDataAssessmentFieldMetricSortByFieldEnum + sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDataAssessmentFieldMetricsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -177688,41 +173449,27 @@ type SalesforceDataAssessmentFieldMetric implements OneGraphNode { """ Collection of Salesforce DataAssessmentValueMetric """ - dataAssessmentValueMetrics(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentValueMetricConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDataAssessmentValueMetricSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DataAssessmentValueMetrics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDataAssessmentValueMetricsConnection + dataAssessmentValueMetrics( + filter: SalesforceDataAssessmentValueMetricConnectionFilter + sortByCustomField: SalesforceDataAssessmentValueMetricSortByFieldEnum + sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDataAssessmentValueMetricsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -177792,25 +173539,16 @@ type SalesforceDataAssessmentValueMetric implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -178097,25 +173835,16 @@ type SalesforceDatacloudOwnedEntity implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -178219,41 +173948,27 @@ type SalesforceDatacloudPurchaseUsage implements OneGraphNode { """ Collection of Salesforce DatacloudOwnedEntity """ - datacloudOwnedEntities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDatacloudOwnedEntityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDatacloudOwnedEntitySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DatacloudOwnedEntities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDatacloudOwnedEntitysConnection + datacloudOwnedEntities( + filter: SalesforceDatacloudOwnedEntityConnectionFilter + sortByCustomField: SalesforceDatacloudOwnedEntitySortByFieldEnum + sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDatacloudOwnedEntitysConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -178339,25 +174054,16 @@ type SalesforceFileSearchActivity implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -178542,12 +174248,8 @@ type SalesforceVote implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -178647,41 +174349,27 @@ type SalesforceIdeaComment implements OneGraphNode { """ Collection of Salesforce Idea """ - ideas(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdeaSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Ideas to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceIdeasConnection + ideas( + filter: SalesforceIdeaConnectionFilter + sortByCustomField: SalesforceIdeaSortByFieldEnum + sortByField: SalesforceIdeaSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceIdeasConnection """ Collection of Salesforce Vote """ - votes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Votes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + votes( + filter: SalesforceVoteConnectionFilter + sortByCustomField: SalesforceVoteSortByFieldEnum + sortByField: SalesforceVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -179117,41 +174805,27 @@ type SalesforceCommunity implements OneGraphNode { """ Collection of Salesforce Idea """ - ideas(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdeaSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Ideas to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceIdeasConnection + ideas( + filter: SalesforceIdeaConnectionFilter + sortByCustomField: SalesforceIdeaSortByFieldEnum + sortByField: SalesforceIdeaSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceIdeasConnection """ Collection of Salesforce IdeaComment """ - ideaComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdeaCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of IdeaComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceIdeaCommentsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + ideaComments( + filter: SalesforceIdeaCommentConnectionFilter + sortByCustomField: SalesforceIdeaCommentSortByFieldEnum + sortByField: SalesforceIdeaCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceIdeaCommentsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -179293,73 +174967,49 @@ type SalesforceIdea implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Idea """ - ideas(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdeaSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Ideas to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceIdeasConnection + ideas( + filter: SalesforceIdeaConnectionFilter + sortByCustomField: SalesforceIdeaSortByFieldEnum + sortByField: SalesforceIdeaSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceIdeasConnection """ Collection of Salesforce IdeaComment """ - comments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdeaCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of IdeaComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceIdeaCommentsConnection + comments( + filter: SalesforceIdeaCommentConnectionFilter + sortByCustomField: SalesforceIdeaCommentSortByFieldEnum + sortByField: SalesforceIdeaCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceIdeaCommentsConnection """ Collection of Salesforce Vote """ - votes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Votes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + votes( + filter: SalesforceVoteConnectionFilter + sortByCustomField: SalesforceVoteSortByFieldEnum + sortByField: SalesforceVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -179697,25 +175347,16 @@ type SalesforceLeadCleanInfo implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -180068,12 +175709,8 @@ type SalesforceMacroHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -180183,57 +175820,38 @@ type SalesforceMacro implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce MacroHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMacroHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of MacroHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMacroHistorysConnection + histories( + filter: SalesforceMacroHistoryConnectionFilter + sortByCustomField: SalesforceMacroHistorySortByFieldEnum + sortByField: SalesforceMacroHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMacroHistorysConnection """ Collection of Salesforce MacroInstruction """ - macroInstructions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroInstructionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMacroInstructionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroInstructionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of MacroInstructions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMacroInstructionsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + macroInstructions( + filter: SalesforceMacroInstructionConnectionFilter + sortByCustomField: SalesforceMacroInstructionSortByFieldEnum + sortByField: SalesforceMacroInstructionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMacroInstructionsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -180315,25 +175933,16 @@ type SalesforceMacroInstruction implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -180427,25 +176036,16 @@ type SalesforcePushTopic implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -180648,12 +176248,8 @@ type SalesforceQuickTextHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -180759,41 +176355,27 @@ type SalesforceQuickText implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce QuickTextHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceQuickTextHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of QuickTextHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceQuickTextHistorysConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + histories( + filter: SalesforceQuickTextHistoryConnectionFilter + sortByCustomField: SalesforceQuickTextHistorySortByFieldEnum + sortByField: SalesforceQuickTextHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceQuickTextHistorysConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -180887,25 +176469,16 @@ type SalesforceSearchActivity implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -180959,25 +176532,16 @@ type SalesforceSearchPromotionRule implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -181053,25 +176617,16 @@ type SalesforceTodayGoal implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -181133,25 +176688,16 @@ type SalesforceUserAppInfo implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -181225,25 +176771,16 @@ type SalesforceUserProvMockTarget implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -181448,25 +176985,16 @@ type SalesforceUserProvisioningLog implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -181678,12 +177206,8 @@ type SalesforceProcessInstanceWorkitem implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -181877,41 +177401,27 @@ type SalesforceDuplicateRecordItem implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -182233,25 +177743,16 @@ type SalesforceDuplicateRule implements OneGraphNode { """ Collection of Salesforce DuplicateRecordSet """ - duplicateRecordSets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordSetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRecordSetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordSetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DuplicateRecordSets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDuplicateRecordSetsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + duplicateRecordSets( + filter: SalesforceDuplicateRecordSetConnectionFilter + sortByCustomField: SalesforceDuplicateRecordSetSortByFieldEnum + sortByField: SalesforceDuplicateRecordSetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDuplicateRecordSetsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -182325,57 +177826,38 @@ type SalesforceDuplicateRecordSet implements OneGraphNode { """ Collection of Salesforce DuplicateRecordItem """ - duplicateRecordItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDuplicateRecordItemsConnection + duplicateRecordItems( + filter: SalesforceDuplicateRecordItemConnectionFilter + sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum + sortByField: SalesforceDuplicateRecordItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDuplicateRecordItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -182518,12 +178000,8 @@ type SalesforceOrderShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -182674,12 +178152,8 @@ type SalesforceOrderHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -182966,12 +178440,8 @@ type SalesforceContractHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -183312,25 +178782,16 @@ type SalesforceContractContactRole implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -183537,12 +178998,8 @@ type SalesforcePricebook2History implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -183887,41 +179344,27 @@ type SalesforcePartner implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Partner """ - partners(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePartnerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Partners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePartnersConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + partners( + filter: SalesforcePartnerConnectionFilter + sortByCustomField: SalesforcePartnerSortByFieldEnum + sortByField: SalesforcePartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePartnersConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -184086,12 +179529,8 @@ type SalesforceOpportunityShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -184313,25 +179752,16 @@ type SalesforceOpportunityPartner implements OneGraphNode { """ Collection of Salesforce OpportunityPartner """ - opportunityPartners(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityPartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityPartnersConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + opportunityPartners( + filter: SalesforceOpportunityPartnerConnectionFilter + sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum + sortByField: SalesforceOpportunityPartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityPartnersConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -184526,12 +179956,8 @@ type SalesforceOpportunityHistory implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -184682,12 +180108,8 @@ type SalesforceOpportunityFieldHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -185028,25 +180450,16 @@ type SalesforceOpportunityContactRole implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -185236,12 +180649,8 @@ type SalesforceOpportunityCompetitor implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -185573,25 +180982,16 @@ type SalesforceAccountPartner implements OneGraphNode { """ Collection of Salesforce AccountPartner """ - accountPartners(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountPartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountPartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountPartnersConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + accountPartners( + filter: SalesforceAccountPartnerConnectionFilter + sortByCustomField: SalesforceAccountPartnerSortByFieldEnum + sortByField: SalesforceAccountPartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountPartnersConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -185795,12 +181195,8 @@ type SalesforceCampaignShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -186003,12 +181399,8 @@ type SalesforceCampaignMemberStatus implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -186703,25 +182095,16 @@ type SalesforceCampaignMember implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -186872,12 +182255,8 @@ type SalesforceCampaignHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -187198,12 +182577,8 @@ type SalesforceSiteHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -187537,25 +182912,16 @@ type SalesforceFeedRevision implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -187706,12 +183072,8 @@ type SalesforceOrderItemHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -187941,73 +183303,49 @@ type SalesforceAccountFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -188101,73 +183439,49 @@ type SalesforceCaseFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -188261,73 +183575,49 @@ type SalesforceContactFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -188421,73 +183711,49 @@ type SalesforceContentDocumentFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -188581,73 +183847,49 @@ type SalesforceContractFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -188741,73 +183983,49 @@ type SalesforceDashboardComponentFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -188901,73 +184119,49 @@ type SalesforceDashboardFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -189154,12 +184348,8 @@ type SalesforceUndecidedEventRelation implements OneGraphNode { Type """ type: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -189371,25 +184561,16 @@ type SalesforceEventRelation implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -189734,12 +184915,8 @@ type SalesforceDeclinedEventRelation implements OneGraphNode { Type """ type: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -189948,12 +185125,8 @@ type SalesforceAcceptedEventRelation implements OneGraphNode { Type """ type: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -190104,12 +185277,8 @@ type SalesforceAssetRelationshipHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -190339,73 +185508,49 @@ type SalesforceAssetRelationshipFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -190640,25 +185785,16 @@ type SalesforceTopicAssignment implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -190944,25 +186080,16 @@ type SalesforceNote implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -191433,25 +186560,16 @@ type SalesforceEmailMessageRelation implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -192000,25 +187118,16 @@ type SalesforceContentDistributionView implements OneGraphNode { """ Collection of Salesforce ContentDistributionView """ - contentDistributionViews(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionViewConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionViewSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDistributionViews to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionViewsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + contentDistributionViews( + filter: SalesforceContentDistributionViewConnectionFilter + sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum + sortByField: SalesforceContentDistributionViewSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionViewsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -192118,38 +187227,26 @@ type SalesforceOutgoingEmail { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection + customFields(fields: [String!]): JSON! } union SalesforceContentVersionFirstPublishLocationUnion = SalesforceUser | SalesforceTopic | SalesforceTask | SalesforceSolution | SalesforceSite | SalesforceReport | SalesforceProduct2 | SalesforceOutgoingEmail | SalesforceOrganization | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunity | SalesforceListEmail | SalesforceLead | SalesforceEvent | SalesforceEmailTemplate | SalesforceEmailMessage | SalesforceDashboardComponent | SalesforceDashboard | SalesforceContract | SalesforceContentWorkspace | SalesforceContact | SalesforceCollaborationGroup | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount @@ -192356,41 +187453,27 @@ type SalesforceCollaborationInvitation implements OneGraphNode { """ Collection of Salesforce CollaborationInvitation """ - collaborationInvitations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationInvitationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationInvitations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationInvitationsConnection + collaborationInvitations( + filter: SalesforceCollaborationInvitationConnectionFilter + sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum + sortByField: SalesforceCollaborationInvitationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationInvitationsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -192575,25 +187658,16 @@ type SalesforceCollaborationGroupRecord implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -192789,25 +187863,16 @@ type SalesforceCollaborationGroupMemberRequest implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -193012,25 +188077,16 @@ type SalesforceCollaborationGroupMember implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -193260,73 +188316,49 @@ type SalesforceCollaborationGroupFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -193764,41 +188796,27 @@ type SalesforceAnnouncement implements OneGraphNode { """ Collection of Salesforce CollaborationGroup """ - collaborationGroups(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroups to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupsConnection + collaborationGroups( + filter: SalesforceCollaborationGroupConnectionFilter + sortByCustomField: SalesforceCollaborationGroupSortByFieldEnum + sortByField: SalesforceCollaborationGroupSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -193936,201 +188954,137 @@ type SalesforceCollaborationGroup implements OneGraphNode { """ Collection of Salesforce Announcement """ - announcements(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAnnouncementConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAnnouncementSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAnnouncementSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Announcements to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAnnouncementsConnection + announcements( + filter: SalesforceAnnouncementConnectionFilter + sortByCustomField: SalesforceAnnouncementSortByFieldEnum + sortByField: SalesforceAnnouncementSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAnnouncementsConnection """ Collection of Salesforce CollaborationGroupFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupFeedsConnection + feeds( + filter: SalesforceCollaborationGroupFeedConnectionFilter + sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum + sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupFeedsConnection """ Collection of Salesforce CollaborationGroupMember """ - groupMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupMembersConnection + groupMembers( + filter: SalesforceCollaborationGroupMemberConnectionFilter + sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum + sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupMembersConnection """ Collection of Salesforce CollaborationGroupMemberRequest """ - groupMemberRequests(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupMemberRequests to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupMemberRequestsConnection + groupMemberRequests( + filter: SalesforceCollaborationGroupMemberRequestConnectionFilter + sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum + sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupMemberRequestsConnection """ Collection of Salesforce CollaborationGroupRecord """ - collaborationGroupRecords(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupRecordsConnection + collaborationGroupRecords( + filter: SalesforceCollaborationGroupRecordConnectionFilter + sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum + sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce CollaborationInvitation """ - collaborationInvitations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationInvitationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationInvitations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationInvitationsConnection + collaborationInvitations( + filter: SalesforceCollaborationInvitationConnectionFilter + sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum + sortByField: SalesforceCollaborationInvitationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationInvitationsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -194381,12 +189335,8 @@ type SalesforceDocumentAttachmentMap implements OneGraphNode { Created By ID """ createdBy: SalesforceUser! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -194735,25 +189685,16 @@ type SalesforceBrandTemplate implements OneGraphNode { """ Collection of Salesforce EmailTemplate """ - emailTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailTemplatesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + emailTemplates( + filter: SalesforceEmailTemplateConnectionFilter + sortByCustomField: SalesforceEmailTemplateSortByFieldEnum + sortByField: SalesforceEmailTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailTemplatesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -194893,73 +189834,49 @@ type SalesforceEmailTemplate implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce DocumentAttachmentMap """ - documentAttachmentMaps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDocumentAttachmentMapConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DocumentAttachmentMaps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDocumentAttachmentMapsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + documentAttachmentMaps( + filter: SalesforceDocumentAttachmentMapConnectionFilter + sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum + sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDocumentAttachmentMapsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -195265,12 +190182,8 @@ type SalesforceUserListViewCriterion implements OneGraphNode { Value """ value: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -195366,25 +190279,16 @@ type SalesforceUserListView implements OneGraphNode { """ Collection of Salesforce UserListViewCriterion """ - userListViewCriterions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserListViewCriterionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserListViewCriterionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserListViewCriterionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserListViewCriterions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserListViewCriterionsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userListViewCriterions( + filter: SalesforceUserListViewCriterionConnectionFilter + sortByCustomField: SalesforceUserListViewCriterionSortByFieldEnum + sortByField: SalesforceUserListViewCriterionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserListViewCriterionsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -195751,41 +190655,27 @@ type SalesforceListView implements OneGraphNode { """ Collection of Salesforce ListEmailRecipientSource """ - listEmailRecipientSources(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailRecipientSourceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ListEmailRecipientSources to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceListEmailRecipientSourcesConnection + listEmailRecipientSources( + filter: SalesforceListEmailRecipientSourceConnectionFilter + sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum + sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceListEmailRecipientSourcesConnection """ Collection of Salesforce UserListView """ - userListViews(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserListViewConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserListViewSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserListViewSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserListViews to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserListViewsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userListViews( + filter: SalesforceUserListViewConnectionFilter + sortByCustomField: SalesforceUserListViewSortByFieldEnum + sortByField: SalesforceUserListViewSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserListViewsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -195859,25 +190749,16 @@ type SalesforceListEmailRecipientSource implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -196167,89 +191048,60 @@ type SalesforceListEmail implements OneGraphNode { """ Collection of Salesforce ContentDistribution """ - contentDistributions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionsConnection + contentDistributions( + filter: SalesforceContentDistributionConnectionFilter + sortByCustomField: SalesforceContentDistributionSortByFieldEnum + sortByField: SalesforceContentDistributionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ListEmailRecipientSource """ - listEmailRecipientSources(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailRecipientSourceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ListEmailRecipientSources to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceListEmailRecipientSourcesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + listEmailRecipientSources( + filter: SalesforceListEmailRecipientSourceConnectionFilter + sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum + sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceListEmailRecipientSourcesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -196401,41 +191253,27 @@ type SalesforceContentDistribution implements OneGraphNode { """ Collection of Salesforce ContentDistributionView """ - contentDistributionViews(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionViewConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionViewSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDistributionViews to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionViewsConnection + contentDistributionViews( + filter: SalesforceContentDistributionViewConnectionFilter + sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum + sortByField: SalesforceContentDistributionViewSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionViewsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -196613,137 +191451,93 @@ type SalesforceEmailMessage implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionsConnection + contentDistributions( + filter: SalesforceContentDistributionConnectionFilter + sortByCustomField: SalesforceContentDistributionSortByFieldEnum + sortByField: SalesforceContentDistributionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emailMessages(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emailMessages( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: SalesforceEmailMessageSortByFieldEnum + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce EmailMessageRelation """ - emailMessageRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessageRelationsConnection + emailMessageRelations( + filter: SalesforceEmailMessageRelationConnectionFilter + sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum + sortByField: SalesforceEmailMessageRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessageRelationsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -197152,12 +191946,8 @@ type SalesforceAssetShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -197459,12 +192249,8 @@ type SalesforceAssetHistory implements OneGraphNode { New Value """ newValue: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -197694,73 +192480,49 @@ type SalesforceAssetFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -198210,345 +192972,236 @@ type SalesforceAsset implements OneGraphNode { """ Collection of Salesforce Asset """ - childAssets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Assets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetsConnection + childAssets( + filter: SalesforceAssetConnectionFilter + sortByCustomField: SalesforceAssetSortByFieldEnum + sortByField: SalesforceAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetsConnection """ Collection of Salesforce Asset """ - assets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Assets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetsConnection + assets( + filter: SalesforceAssetConnectionFilter + sortByCustomField: SalesforceAssetSortByFieldEnum + sortByField: SalesforceAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetsConnection """ Collection of Salesforce AssetFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetFeedsConnection + feeds( + filter: SalesforceAssetFeedConnectionFilter + sortByCustomField: SalesforceAssetFeedSortByFieldEnum + sortByField: SalesforceAssetFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetFeedsConnection """ Collection of Salesforce AssetHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetHistorysConnection + histories( + filter: SalesforceAssetHistoryConnectionFilter + sortByCustomField: SalesforceAssetHistorySortByFieldEnum + sortByField: SalesforceAssetHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetHistorysConnection """ Collection of Salesforce AssetRelationship """ - primaryAssets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetRelationships to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetRelationshipsConnection + primaryAssets( + filter: SalesforceAssetRelationshipConnectionFilter + sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum + sortByField: SalesforceAssetRelationshipSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetRelationshipsConnection """ Collection of Salesforce AssetRelationship """ - relatedAssets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetRelationships to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetRelationshipsConnection + relatedAssets( + filter: SalesforceAssetRelationshipConnectionFilter + sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum + sortByField: SalesforceAssetRelationshipSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetRelationshipsConnection """ Collection of Salesforce AssetShare """ - shares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetSharesConnection + shares( + filter: SalesforceAssetShareConnectionFilter + sortByCustomField: SalesforceAssetShareSortByFieldEnum + sortByField: SalesforceAssetShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetSharesConnection """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce Case """ - cases(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Cases to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCasesConnection + cases( + filter: SalesforceCaseConnectionFilter + sortByCustomField: SalesforceCaseSortByFieldEnum + sortByField: SalesforceCaseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCasesConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emails( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: SalesforceEmailMessageSortByFieldEnum + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + events( + filter: SalesforceEventConnectionFilter + sortByCustomField: SalesforceEventSortByFieldEnum + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Note """ - notes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Notes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceNotesConnection + notes( + filter: SalesforceNoteConnectionFilter + sortByCustomField: SalesforceNoteSortByFieldEnum + sortByField: SalesforceNoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceNotesConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection + tasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: SalesforceTaskSortByFieldEnum + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -198638,201 +193291,137 @@ type SalesforceAssetRelationship implements OneGraphNode { """ Collection of Salesforce AssetRelationshipFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetRelationshipFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetRelationshipFeedsConnection + feeds( + filter: SalesforceAssetRelationshipFeedConnectionFilter + sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum + sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetRelationshipFeedsConnection """ Collection of Salesforce AssetRelationshipHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetRelationshipHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetRelationshipHistorysConnection + histories( + filter: SalesforceAssetRelationshipHistoryConnectionFilter + sortByCustomField: SalesforceAssetRelationshipHistorySortByFieldEnum + sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetRelationshipHistorysConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emails( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: SalesforceEmailMessageSortByFieldEnum + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + events( + filter: SalesforceEventConnectionFilter + sortByCustomField: SalesforceEventSortByFieldEnum + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + tasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: SalesforceTaskSortByFieldEnum + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -199038,233 +193627,159 @@ type SalesforceEvent implements OneGraphNode { """ Collection of Salesforce AcceptedEventRelation """ - acceptedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAcceptedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAcceptedEventRelationsConnection + acceptedEventRelations( + filter: SalesforceAcceptedEventRelationConnectionFilter + sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum + sortByField: SalesforceAcceptedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAcceptedEventRelationsConnection """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce DeclinedEventRelation """ - declinedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDeclinedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDeclinedEventRelationsConnection + declinedEventRelations( + filter: SalesforceDeclinedEventRelationConnectionFilter + sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum + sortByField: SalesforceDeclinedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDeclinedEventRelationsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - recurringEvents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + recurringEvents( + filter: SalesforceEventConnectionFilter + sortByCustomField: SalesforceEventSortByFieldEnum + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce EventFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EventFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventFeedsConnection + feeds( + filter: SalesforceEventFeedConnectionFilter + sortByCustomField: SalesforceEventFeedSortByFieldEnum + sortByField: SalesforceEventFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventFeedsConnection """ Collection of Salesforce EventRelation """ - eventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventRelationsConnection + eventRelations( + filter: SalesforceEventRelationConnectionFilter + sortByCustomField: SalesforceEventRelationSortByFieldEnum + sortByField: SalesforceEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventRelationsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection """ Collection of Salesforce UndecidedEventRelation """ - undecidedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUndecidedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUndecidedEventRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + undecidedEventRelations( + filter: SalesforceUndecidedEventRelationConnectionFilter + sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum + sortByField: SalesforceUndecidedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUndecidedEventRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -199358,73 +193873,49 @@ type SalesforceEventFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -199518,73 +194009,49 @@ type SalesforceLeadFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -199678,73 +194145,49 @@ type SalesforceOpportunityFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -199840,73 +194283,49 @@ type SalesforceOrderFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -200002,73 +194421,49 @@ type SalesforceProduct2Feed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -200164,73 +194559,49 @@ type SalesforceReportFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -200326,73 +194697,49 @@ type SalesforceOrderItemFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -201646,25 +195993,16 @@ type SalesforceOpportunityLineItem implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -201772,57 +196110,38 @@ type SalesforcePricebookEntry implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce OpportunityLineItem """ - opportunityLineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityLineItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityLineItemsConnection + opportunityLineItems( + filter: SalesforceOpportunityLineItemConnectionFilter + sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum + sortByField: SalesforceOpportunityLineItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityLineItemsConnection """ Collection of Salesforce OrderItem """ - orderItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderItemsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + orderItems( + filter: SalesforceOrderItemConnectionFilter + sortByCustomField: SalesforceOrderItemSortByFieldEnum + sortByField: SalesforceOrderItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderItemsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -201940,153 +196259,104 @@ type SalesforceOrderItem implements OneGraphNode { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce OrderItem """ - childOrderItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderItemsConnection + childOrderItems( + filter: SalesforceOrderItemConnectionFilter + sortByCustomField: SalesforceOrderItemSortByFieldEnum + sortByField: SalesforceOrderItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderItemsConnection """ Collection of Salesforce OrderItemFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderItemFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderItemFeedsConnection + feeds( + filter: SalesforceOrderItemFeedConnectionFilter + sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum + sortByField: SalesforceOrderItemFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderItemFeedsConnection """ Collection of Salesforce OrderItemHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderItemHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderItemHistorysConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + histories( + filter: SalesforceOrderItemHistoryConnectionFilter + sortByCustomField: SalesforceOrderItemHistorySortByFieldEnum + sortByField: SalesforceOrderItemHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderItemHistorysConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -202230,137 +196500,93 @@ type SalesforceFeedItem implements OneGraphNode { """ Collection of Salesforce Announcement """ - announcements(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAnnouncementConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAnnouncementSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAnnouncementSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Announcements to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAnnouncementsConnection + announcements( + filter: SalesforceAnnouncementConnectionFilter + sortByCustomField: SalesforceAnnouncementSortByFieldEnum + sortByField: SalesforceAnnouncementSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAnnouncementsConnection """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection """ Collection of Salesforce FeedRevision """ - feedRevisions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedRevisionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedRevisionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedRevisionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedRevisions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedRevisionsConnection + feedRevisions( + filter: SalesforceFeedRevisionConnectionFilter + sortByCustomField: SalesforceFeedRevisionSortByFieldEnum + sortByField: SalesforceFeedRevisionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedRevisionsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -202837,25 +197063,16 @@ type SalesforceDomain implements OneGraphNode { """ Collection of Salesforce DomainSite """ - domainSites(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDomainSiteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDomainSiteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDomainSiteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DomainSites to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDomainSitesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + domainSites( + filter: SalesforceDomainSiteConnectionFilter + sortByCustomField: SalesforceDomainSiteSortByFieldEnum + sortByField: SalesforceDomainSiteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDomainSitesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -202918,12 +197135,8 @@ type SalesforceDomainSite implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -203115,137 +197328,93 @@ type SalesforceSite implements OneGraphNode { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce DomainSite """ - siteDomainPaths(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDomainSiteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDomainSiteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDomainSiteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DomainSites to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDomainSitesConnection + siteDomainPaths( + filter: SalesforceDomainSiteConnectionFilter + sortByCustomField: SalesforceDomainSiteSortByFieldEnum + sortByField: SalesforceDomainSiteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDomainSitesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce SiteFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSiteFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SiteFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSiteFeedsConnection + feeds( + filter: SalesforceSiteFeedConnectionFilter + sortByCustomField: SalesforceSiteFeedSortByFieldEnum + sortByField: SalesforceSiteFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSiteFeedsConnection """ Collection of Salesforce SiteHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSiteHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SiteHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSiteHistorysConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + histories( + filter: SalesforceSiteHistoryConnectionFilter + sortByCustomField: SalesforceSiteHistorySortByFieldEnum + sortByField: SalesforceSiteHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSiteHistorysConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -203339,73 +197508,49 @@ type SalesforceSiteFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -203567,73 +197712,49 @@ type SalesforceSolutionFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -203689,25 +197810,16 @@ type SalesforceFeedPollVote implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -203877,73 +197989,49 @@ type SalesforceTaskFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -203995,41 +198083,27 @@ type SalesforceFeedPollChoice implements OneGraphNode { """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -204262,73 +198336,49 @@ type SalesforceTopicFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -204440,73 +198490,49 @@ type SalesforceFeedComment implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FeedRevision """ - feedRevisions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedRevisionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedRevisionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedRevisionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedRevisions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedRevisionsConnection + feedRevisions( + filter: SalesforceFeedRevisionConnectionFilter + sortByCustomField: SalesforceFeedRevisionSortByFieldEnum + sortByField: SalesforceFeedRevisionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedRevisionsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -204681,73 +198707,49 @@ type SalesforceUserFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -204799,25 +198801,16 @@ type SalesforceFeedAttachment implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -204933,73 +198926,49 @@ type SalesforceCampaignFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -205533,345 +199502,236 @@ type SalesforceCampaign implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce Campaign """ - childCampaigns(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Campaigns to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignsConnection + childCampaigns( + filter: SalesforceCampaignConnectionFilter + sortByCustomField: SalesforceCampaignSortByFieldEnum + sortByField: SalesforceCampaignSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignsConnection """ Collection of Salesforce CampaignFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CampaignFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignFeedsConnection + feeds( + filter: SalesforceCampaignFeedConnectionFilter + sortByCustomField: SalesforceCampaignFeedSortByFieldEnum + sortByField: SalesforceCampaignFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignFeedsConnection """ Collection of Salesforce CampaignHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CampaignHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignHistorysConnection + histories( + filter: SalesforceCampaignHistoryConnectionFilter + sortByCustomField: SalesforceCampaignHistorySortByFieldEnum + sortByField: SalesforceCampaignHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignHistorysConnection """ Collection of Salesforce CampaignMember """ - campaignMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignMembersConnection + campaignMembers( + filter: SalesforceCampaignMemberConnectionFilter + sortByCustomField: SalesforceCampaignMemberSortByFieldEnum + sortByField: SalesforceCampaignMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignMembersConnection """ Collection of Salesforce CampaignMemberStatus """ - campaignMemberStatuses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberStatusConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignMemberStatusSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberStatusSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CampaignMemberStatuses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignMemberStatussConnection + campaignMemberStatuses( + filter: SalesforceCampaignMemberStatusConnectionFilter + sortByCustomField: SalesforceCampaignMemberStatusSortByFieldEnum + sortByField: SalesforceCampaignMemberStatusSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignMemberStatussConnection """ Collection of Salesforce CampaignShare """ - shares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CampaignShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignSharesConnection + shares( + filter: SalesforceCampaignShareConnectionFilter + sortByCustomField: SalesforceCampaignShareSortByFieldEnum + sortByField: SalesforceCampaignShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignSharesConnection """ Collection of Salesforce CollaborationGroupRecord """ - recordAssociatedGroups(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupRecordsConnection + recordAssociatedGroups( + filter: SalesforceCollaborationGroupRecordConnectionFilter + sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum + sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionsConnection + contentDistributions( + filter: SalesforceContentDistributionConnectionFilter + sortByCustomField: SalesforceContentDistributionSortByFieldEnum + sortByField: SalesforceContentDistributionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emails( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: SalesforceEmailMessageSortByFieldEnum + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + events( + filter: SalesforceEventConnectionFilter + sortByCustomField: SalesforceEventSortByFieldEnum + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Opportunity """ - opportunities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunitySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Opportunities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunitysConnection + opportunities( + filter: SalesforceOpportunityConnectionFilter + sortByCustomField: SalesforceOpportunitySortByFieldEnum + sortByField: SalesforceOpportunitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunitysConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection + tasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: SalesforceTaskSortByFieldEnum + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -206053,425 +199913,291 @@ type SalesforceOpportunity implements OneGraphNode { """ Collection of Salesforce AccountPartner """ - accountPartners(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountPartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountPartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountPartnersConnection + accountPartners( + filter: SalesforceAccountPartnerConnectionFilter + sortByCustomField: SalesforceAccountPartnerSortByFieldEnum + sortByField: SalesforceAccountPartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountPartnersConnection """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce CollaborationGroupRecord """ - recordAssociatedGroups(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupRecordsConnection + recordAssociatedGroups( + filter: SalesforceCollaborationGroupRecordConnectionFilter + sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum + sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionsConnection + contentDistributions( + filter: SalesforceContentDistributionConnectionFilter + sortByCustomField: SalesforceContentDistributionSortByFieldEnum + sortByField: SalesforceContentDistributionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emails( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: SalesforceEmailMessageSortByFieldEnum + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + events( + filter: SalesforceEventConnectionFilter + sortByCustomField: SalesforceEventSortByFieldEnum + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Lead """ - leads(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Leads to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadsConnection + leads( + filter: SalesforceLeadConnectionFilter + sortByCustomField: SalesforceLeadSortByFieldEnum + sortByField: SalesforceLeadSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadsConnection """ Collection of Salesforce Note """ - notes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Notes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceNotesConnection + notes( + filter: SalesforceNoteConnectionFilter + sortByCustomField: SalesforceNoteSortByFieldEnum + sortByField: SalesforceNoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceNotesConnection """ Collection of Salesforce OpportunityCompetitor """ - opportunityCompetitors(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityCompetitorConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityCompetitorSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityCompetitorSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityCompetitors to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityCompetitorsConnection + opportunityCompetitors( + filter: SalesforceOpportunityCompetitorConnectionFilter + sortByCustomField: SalesforceOpportunityCompetitorSortByFieldEnum + sortByField: SalesforceOpportunityCompetitorSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityCompetitorsConnection """ Collection of Salesforce OpportunityContactRole """ - opportunityContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityContactRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityContactRolesConnection + opportunityContactRoles( + filter: SalesforceOpportunityContactRoleConnectionFilter + sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum + sortByField: SalesforceOpportunityContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityContactRolesConnection """ Collection of Salesforce OpportunityFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityFeedsConnection + feeds( + filter: SalesforceOpportunityFeedConnectionFilter + sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum + sortByField: SalesforceOpportunityFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityFeedsConnection """ Collection of Salesforce OpportunityFieldHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityFieldHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityFieldHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityFieldHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityFieldHistorysConnection + histories( + filter: SalesforceOpportunityFieldHistoryConnectionFilter + sortByCustomField: SalesforceOpportunityFieldHistorySortByFieldEnum + sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityFieldHistorysConnection """ Collection of Salesforce OpportunityHistory """ - opportunityHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityHistorysConnection + opportunityHistories( + filter: SalesforceOpportunityHistoryConnectionFilter + sortByCustomField: SalesforceOpportunityHistorySortByFieldEnum + sortByField: SalesforceOpportunityHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityHistorysConnection """ Collection of Salesforce OpportunityLineItem """ - opportunityLineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityLineItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityLineItemsConnection + opportunityLineItems( + filter: SalesforceOpportunityLineItemConnectionFilter + sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum + sortByField: SalesforceOpportunityLineItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityLineItemsConnection """ Collection of Salesforce OpportunityPartner """ - opportunityPartnersFrom(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityPartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityPartnersConnection + opportunityPartnersFrom( + filter: SalesforceOpportunityPartnerConnectionFilter + sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum + sortByField: SalesforceOpportunityPartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityPartnersConnection """ Collection of Salesforce OpportunityShare """ - shares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunitySharesConnection + shares( + filter: SalesforceOpportunityShareConnectionFilter + sortByCustomField: SalesforceOpportunityShareSortByFieldEnum + sortByField: SalesforceOpportunityShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunitySharesConnection """ Collection of Salesforce Partner """ - partners(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePartnerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Partners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePartnersConnection + partners( + filter: SalesforcePartnerConnectionFilter + sortByCustomField: SalesforcePartnerSortByFieldEnum + sortByField: SalesforcePartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePartnersConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection + tasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: SalesforceTaskSortByFieldEnum + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -206930,105 +200656,71 @@ type SalesforcePricebook2 implements OneGraphNode { """ Collection of Salesforce Contract """ - contracts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contracts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractsConnection + contracts( + filter: SalesforceContractConnectionFilter + sortByCustomField: SalesforceContractSortByFieldEnum + sortByField: SalesforceContractSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Opportunity """ - opportunities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunitySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Opportunities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunitysConnection + opportunities( + filter: SalesforceOpportunityConnectionFilter + sortByCustomField: SalesforceOpportunitySortByFieldEnum + sortByField: SalesforceOpportunitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunitysConnection """ Collection of Salesforce Order """ - orders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Orders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrdersConnection + orders( + filter: SalesforceOrderConnectionFilter + sortByCustomField: SalesforceOrderSortByFieldEnum + sortByField: SalesforceOrderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrdersConnection """ Collection of Salesforce Pricebook2History """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebook2HistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePricebook2HistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebook2HistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Pricebook2Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePricebook2HistorysConnection + histories( + filter: SalesforcePricebook2HistoryConnectionFilter + sortByCustomField: SalesforcePricebook2HistorySortByFieldEnum + sortByField: SalesforcePricebook2HistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePricebook2HistorysConnection """ Collection of Salesforce PricebookEntry """ - pricebookEntries(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebookEntryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePricebookEntrySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebookEntrySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PricebookEntries to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePricebookEntrysConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + pricebookEntries( + filter: SalesforcePricebookEntryConnectionFilter + sortByCustomField: SalesforcePricebookEntrySortByFieldEnum + sortByField: SalesforcePricebookEntrySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePricebookEntrysConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -207230,297 +200922,203 @@ type SalesforceContract implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce CollaborationGroupRecord """ - recordAssociatedGroups(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupRecordsConnection + recordAssociatedGroups( + filter: SalesforceCollaborationGroupRecordConnectionFilter + sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum + sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce ContractContactRole """ - contractContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractContactRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContractContactRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractContactRolesConnection + contractContactRoles( + filter: SalesforceContractContactRoleConnectionFilter + sortByCustomField: SalesforceContractContactRoleSortByFieldEnum + sortByField: SalesforceContractContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractContactRolesConnection """ Collection of Salesforce ContractFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContractFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractFeedsConnection + feeds( + filter: SalesforceContractFeedConnectionFilter + sortByCustomField: SalesforceContractFeedSortByFieldEnum + sortByField: SalesforceContractFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractFeedsConnection """ Collection of Salesforce ContractHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContractHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractHistorysConnection + histories( + filter: SalesforceContractHistoryConnectionFilter + sortByCustomField: SalesforceContractHistorySortByFieldEnum + sortByField: SalesforceContractHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractHistorysConnection """ Collection of Salesforce EmailMessage """ - emails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emails( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: SalesforceEmailMessageSortByFieldEnum + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + events( + filter: SalesforceEventConnectionFilter + sortByCustomField: SalesforceEventSortByFieldEnum + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Note """ - notes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Notes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceNotesConnection + notes( + filter: SalesforceNoteConnectionFilter + sortByCustomField: SalesforceNoteSortByFieldEnum + sortByField: SalesforceNoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceNotesConnection """ Collection of Salesforce Order """ - orders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Orders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrdersConnection + orders( + filter: SalesforceOrderConnectionFilter + sortByCustomField: SalesforceOrderSortByFieldEnum + sortByField: SalesforceOrderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrdersConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection + tasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: SalesforceTaskSortByFieldEnum + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -207796,297 +201394,203 @@ type SalesforceOrder implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emails( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: SalesforceEmailMessageSortByFieldEnum + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + events( + filter: SalesforceEventConnectionFilter + sortByCustomField: SalesforceEventSortByFieldEnum + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Note """ - notes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Notes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceNotesConnection + notes( + filter: SalesforceNoteConnectionFilter + sortByCustomField: SalesforceNoteSortByFieldEnum + sortByField: SalesforceNoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceNotesConnection """ Collection of Salesforce Order """ - orders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Orders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrdersConnection + orders( + filter: SalesforceOrderConnectionFilter + sortByCustomField: SalesforceOrderSortByFieldEnum + sortByField: SalesforceOrderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrdersConnection """ Collection of Salesforce OrderFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderFeedsConnection + feeds( + filter: SalesforceOrderFeedConnectionFilter + sortByCustomField: SalesforceOrderFeedSortByFieldEnum + sortByField: SalesforceOrderFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderFeedsConnection """ Collection of Salesforce OrderHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderHistorysConnection + histories( + filter: SalesforceOrderHistoryConnectionFilter + sortByCustomField: SalesforceOrderHistorySortByFieldEnum + sortByField: SalesforceOrderHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderHistorysConnection """ Collection of Salesforce OrderItem """ - orderItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderItemsConnection + orderItems( + filter: SalesforceOrderItemConnectionFilter + sortByCustomField: SalesforceOrderItemSortByFieldEnum + sortByField: SalesforceOrderItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderItemsConnection """ Collection of Salesforce OrderShare """ - shares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderSharesConnection + shares( + filter: SalesforceOrderShareConnectionFilter + sortByCustomField: SalesforceOrderShareSortByFieldEnum + sortByField: SalesforceOrderShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderSharesConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection + tasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: SalesforceTaskSortByFieldEnum + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -208154,41 +201658,27 @@ type SalesforceOrgDeleteRequest implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -208270,41 +201760,27 @@ type SalesforceStreamingChannel implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -208534,12 +202010,8 @@ type SalesforceProcessInstanceStep implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -208843,25 +202315,16 @@ type SalesforceProcessInstanceNode implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -208925,41 +202388,27 @@ type SalesforceProcessNode implements OneGraphNode { """ Collection of Salesforce ProcessInstanceNode """ - processInstanceNodes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceNodeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstanceNodes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstanceNodesConnection + processInstanceNodes( + filter: SalesforceProcessInstanceNodeConnectionFilter + sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum + sortByField: SalesforceProcessInstanceNodeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstanceNodesConnection """ Collection of Salesforce ProcessInstanceStep """ - processInstanceSteps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceStepConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstanceSteps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstanceStepsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + processInstanceSteps( + filter: SalesforceProcessInstanceStepConnectionFilter + sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum + sortByField: SalesforceProcessInstanceStepSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstanceStepsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -209257,41 +202706,27 @@ type SalesforceProcessDefinition implements OneGraphNode { """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce ProcessNode """ - processNodes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessNodeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessNodeSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessNodeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessNodes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessNodesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + processNodes( + filter: SalesforceProcessNodeConnectionFilter + sortByCustomField: SalesforceProcessNodeSortByFieldEnum + sortByField: SalesforceProcessNodeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessNodesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -209393,73 +202828,49 @@ type SalesforceProcessInstance implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstanceNode """ - nodes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceNodeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstanceNodes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstanceNodesConnection + nodes( + filter: SalesforceProcessInstanceNodeConnectionFilter + sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum + sortByField: SalesforceProcessInstanceNodeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstanceNodesConnection """ Collection of Salesforce ProcessInstanceStep """ - steps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceStepConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstanceSteps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstanceStepsConnection + steps( + filter: SalesforceProcessInstanceStepConnectionFilter + sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum + sortByField: SalesforceProcessInstanceStepSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstanceStepsConnection """ Collection of Salesforce ProcessInstanceWorkitem """ - workitems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceWorkitemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceWorkitemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstanceWorkitems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstanceWorkitemsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + workitems( + filter: SalesforceProcessInstanceWorkitemConnectionFilter + sortByCustomField: SalesforceProcessInstanceWorkitemSortByFieldEnum + sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstanceWorkitemsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -209718,25 +203129,16 @@ type SalesforceUserProvAccountStaging implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -209903,41 +203305,27 @@ type SalesforceUserProvAccount implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce UserProvisioningRequest """ - userProvisioningRequests(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningRequestsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userProvisioningRequests( + filter: SalesforceUserProvisioningRequestConnectionFilter + sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum + sortByField: SalesforceUserProvisioningRequestSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningRequestsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -210131,25 +203519,16 @@ type SalesforceUserAppMenuCustomization implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -210363,25 +203742,16 @@ type SalesforceInstalledMobileApp implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -210631,12 +204001,8 @@ type SalesforcePermissionSetAssignment implements OneGraphNode { Date Assigned """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -210851,12 +204217,8 @@ type SalesforceObjectPermissions implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -210998,12 +204360,8 @@ type SalesforceFieldPermissions implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -211187,12 +204545,8 @@ type SalesforcePermissionSetLicenseAssign implements OneGraphNode { User ID """ assignee: SalesforceUser! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -211517,25 +204871,16 @@ type SalesforceScontrol implements OneGraphNode { """ Collection of Salesforce WebLink """ - webLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceWebLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceWebLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceWebLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of WebLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceWebLinksConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + webLinks( + filter: SalesforceWebLinkConnectionFilter + sortByCustomField: SalesforceWebLinkSortByFieldEnum + sortByField: SalesforceWebLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceWebLinksConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -211672,12 +205017,8 @@ type SalesforceWebLink implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -211887,12 +205228,8 @@ type SalesforceVisualforceAccessMetrics implements OneGraphNode { Daily Page View Count """ dailyPageViewCount: Int - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -212000,57 +205337,38 @@ type SalesforceApexPage implements OneGraphNode { """ Collection of Salesforce SetupEntityAccess """ - setupEntityAccessItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSetupEntityAccesssConnection + setupEntityAccessItems( + filter: SalesforceSetupEntityAccessConnectionFilter + sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum + sortByField: SalesforceSetupEntityAccessSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSetupEntityAccesssConnection """ Collection of Salesforce VisualforceAccessMetrics """ - visualforceAccessMetricsPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVisualforceAccessMetricsConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVisualforceAccessMetricsSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVisualforceAccessMetricsSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of VisualforceAccessMetrics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceVisualforceAccessMetricssConnection + visualforceAccessMetricsPlural( + filter: SalesforceVisualforceAccessMetricsConnectionFilter + sortByCustomField: SalesforceVisualforceAccessMetricsSortByFieldEnum + sortByField: SalesforceVisualforceAccessMetricsSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceVisualforceAccessMetricssConnection """ Collection of Salesforce WebLink """ - webLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceWebLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceWebLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceWebLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of WebLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceWebLinksConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + webLinks( + filter: SalesforceWebLinkConnectionFilter + sortByCustomField: SalesforceWebLinkSortByFieldEnum + sortByField: SalesforceWebLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceWebLinksConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -212704,25 +206022,16 @@ type SalesforceUserProvisioningConfig implements OneGraphNode { """ Collection of Salesforce UserProvisioningRequest """ - userProvisioningRequests(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningRequestsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userProvisioningRequests( + filter: SalesforceUserProvisioningRequestConnectionFilter + sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum + sortByField: SalesforceUserProvisioningRequestSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningRequestsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -212996,12 +206305,8 @@ type SalesforceExternalDataUserAuth implements OneGraphNode { Auth. Provider ID """ authProvider: SalesforceAuthProvider - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -213117,57 +206422,38 @@ type SalesforceNamedCredential implements OneGraphNode { """ Collection of Salesforce ExternalDataUserAuth """ - userAuths(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataUserAuthConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceExternalDataUserAuthsConnection + userAuths( + filter: SalesforceExternalDataUserAuthConnectionFilter + sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum + sortByField: SalesforceExternalDataUserAuthSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceExternalDataUserAuthsConnection """ Collection of Salesforce SetupEntityAccess """ - setupEntityAccessItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSetupEntityAccesssConnection + setupEntityAccessItems( + filter: SalesforceSetupEntityAccessConnectionFilter + sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum + sortByField: SalesforceSetupEntityAccessSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSetupEntityAccesssConnection """ Collection of Salesforce UserProvisioningConfig """ - userProvisioningConfigs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningConfigConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvisioningConfigs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningConfigsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userProvisioningConfigs( + filter: SalesforceUserProvisioningConfigConnectionFilter + sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum + sortByField: SalesforceUserProvisioningConfigSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningConfigsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -213208,12 +206494,8 @@ type SalesforceSetupEntityAccess implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -214386,12 +207668,8 @@ type SalesforceCustomPermissionDependency implements OneGraphNode { Custom Permission ID """ requiredCustomPermission: SalesforceCustomPermission! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -214487,73 +207765,49 @@ type SalesforceCustomPermission implements OneGraphNode { """ Collection of Salesforce CustomPermissionDependency """ - customPermissionItem(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomPermissionDependencyConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CustomPermissionDependencies to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomPermissionDependencysConnection + customPermissionItem( + filter: SalesforceCustomPermissionDependencyConnectionFilter + sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum + sortByField: SalesforceCustomPermissionDependencySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomPermissionDependencysConnection """ Collection of Salesforce CustomPermissionDependency """ - customPermissionDependencyItem(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomPermissionDependencyConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CustomPermissionDependencies to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomPermissionDependencysConnection + customPermissionDependencyItem( + filter: SalesforceCustomPermissionDependencyConnectionFilter + sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum + sortByField: SalesforceCustomPermissionDependencySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomPermissionDependencysConnection """ Collection of Salesforce GrantedByLicense """ - grantedByLicenses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGrantedByLicenseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of GrantedByLicenses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceGrantedByLicensesConnection + grantedByLicenses( + filter: SalesforceGrantedByLicenseConnectionFilter + sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum + sortByField: SalesforceGrantedByLicenseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceGrantedByLicensesConnection """ Collection of Salesforce SetupEntityAccess """ - setupEntityAccessItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSetupEntityAccesssConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + setupEntityAccessItems( + filter: SalesforceSetupEntityAccessConnectionFilter + sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum + sortByField: SalesforceSetupEntityAccessSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSetupEntityAccesssConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -214616,12 +207870,8 @@ type SalesforceGrantedByLicense implements OneGraphNode { Custom Permission ID """ customPermission: SalesforceCustomPermission! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -215465,57 +208715,38 @@ type SalesforcePermissionSetLicense implements OneGraphNode { """ Collection of Salesforce GrantedByLicense """ - grantedByLicenses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGrantedByLicenseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of GrantedByLicenses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceGrantedByLicensesConnection + grantedByLicenses( + filter: SalesforceGrantedByLicenseConnectionFilter + sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum + sortByField: SalesforceGrantedByLicenseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceGrantedByLicensesConnection """ Collection of Salesforce PermissionSet """ - permissionSets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PermissionSets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePermissionSetsConnection + permissionSets( + filter: SalesforcePermissionSetConnectionFilter + sortByCustomField: SalesforcePermissionSetSortByFieldEnum + sortByField: SalesforcePermissionSetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePermissionSetsConnection """ Collection of Salesforce PermissionSetLicenseAssign """ - permissionSetLicenseAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PermissionSetLicenseAssigns to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePermissionSetLicenseAssignsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + permissionSetLicenseAssignments( + filter: SalesforcePermissionSetLicenseAssignConnectionFilter + sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum + sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePermissionSetLicenseAssignsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -216476,41 +209707,27 @@ type SalesforceProfile implements OneGraphNode { """ Collection of Salesforce PermissionSet """ - permissionSets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PermissionSets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePermissionSetsConnection + permissionSets( + filter: SalesforcePermissionSetConnectionFilter + sortByCustomField: SalesforcePermissionSetSortByFieldEnum + sortByField: SalesforcePermissionSetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePermissionSetsConnection """ Collection of Salesforce User """ - users(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Users to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUsersConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + users( + filter: SalesforceUserConnectionFilter + sortByCustomField: SalesforceUserSortByFieldEnum + sortByField: SalesforceUserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUsersConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -217548,12 +210765,8 @@ type SalesforceCustomObjectUserLicenseMetrics implements OneGraphNode { Count of Objects assigned """ objectCount: Int - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -217633,57 +210846,38 @@ type SalesforceUserLicense implements OneGraphNode { """ Collection of Salesforce CustomObjectUserLicenseMetrics """ - customObjectUserLicenseMetricsPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomObjectUserLicenseMetricsConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CustomObjectUserLicenseMetrics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomObjectUserLicenseMetricssConnection + customObjectUserLicenseMetricsPlural( + filter: SalesforceCustomObjectUserLicenseMetricsConnectionFilter + sortByCustomField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum + sortByField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomObjectUserLicenseMetricssConnection """ Collection of Salesforce PermissionSet """ - permissionSets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PermissionSets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePermissionSetsConnection + permissionSets( + filter: SalesforcePermissionSetConnectionFilter + sortByCustomField: SalesforcePermissionSetSortByFieldEnum + sortByField: SalesforcePermissionSetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePermissionSetsConnection """ Collection of Salesforce Profile """ - profiles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProfileConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProfileSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProfileSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Profiles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProfilesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + profiles( + filter: SalesforceProfileConnectionFilter + sortByCustomField: SalesforceProfileSortByFieldEnum + sortByField: SalesforceProfileSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProfilesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -218515,89 +211709,60 @@ type SalesforcePermissionSet implements OneGraphNode { """ Collection of Salesforce FieldPermissions """ - fieldPerms(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFieldPermissionsConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFieldPermissionsSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFieldPermissionsSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FieldPermissions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFieldPermissionssConnection + fieldPerms( + filter: SalesforceFieldPermissionsConnectionFilter + sortByCustomField: SalesforceFieldPermissionsSortByFieldEnum + sortByField: SalesforceFieldPermissionsSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFieldPermissionssConnection """ Collection of Salesforce ObjectPermissions """ - objectPerms(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceObjectPermissionsConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceObjectPermissionsSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceObjectPermissionsSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ObjectPermissions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceObjectPermissionssConnection + objectPerms( + filter: SalesforceObjectPermissionsConnectionFilter + sortByCustomField: SalesforceObjectPermissionsSortByFieldEnum + sortByField: SalesforceObjectPermissionsSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceObjectPermissionssConnection """ Collection of Salesforce PermissionSetAssignment """ - assignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PermissionSetAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePermissionSetAssignmentsConnection + assignments( + filter: SalesforcePermissionSetAssignmentConnectionFilter + sortByCustomField: SalesforcePermissionSetAssignmentSortByFieldEnum + sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePermissionSetAssignmentsConnection """ Collection of Salesforce SessionPermSetActivation """ - sessionActivations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSessionPermSetActivationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SessionPermSetActivations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSessionPermSetActivationsConnection + sessionActivations( + filter: SalesforceSessionPermSetActivationConnectionFilter + sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum + sortByField: SalesforceSessionPermSetActivationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSessionPermSetActivationsConnection """ Collection of Salesforce SetupEntityAccess """ - setupEntityAccessItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSetupEntityAccesssConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + setupEntityAccessItems( + filter: SalesforceSetupEntityAccessConnectionFilter + sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum + sortByField: SalesforceSetupEntityAccessSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSetupEntityAccesssConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -218672,12 +211837,8 @@ type SalesforceSessionPermSetActivation implements OneGraphNode { Description """ description: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -219147,12 +212308,8 @@ type SalesforceVerificationHistory implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -219407,57 +212564,38 @@ type SalesforceLoginGeo implements OneGraphNode { """ Collection of Salesforce AuthSession """ - authSessions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthSessionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthSessionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AuthSessions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthSessionsConnection + authSessions( + filter: SalesforceAuthSessionConnectionFilter + sortByCustomField: SalesforceAuthSessionSortByFieldEnum + sortByField: SalesforceAuthSessionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthSessionsConnection """ Collection of Salesforce LoginHistory """ - loginHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LoginHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLoginHistorysConnection + loginHistories( + filter: SalesforceLoginHistoryConnectionFilter + sortByCustomField: SalesforceLoginHistorySortByFieldEnum + sortByField: SalesforceLoginHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLoginHistorysConnection """ Collection of Salesforce VerificationHistory """ - verificationHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVerificationHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVerificationHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceVerificationHistorysConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + verificationHistories( + filter: SalesforceVerificationHistoryConnectionFilter + sortByCustomField: SalesforceVerificationHistorySortByFieldEnum + sortByField: SalesforceVerificationHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceVerificationHistorysConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -219954,25 +213092,16 @@ type SalesforceAuthConfig implements OneGraphNode { """ Collection of Salesforce AuthConfigProviders """ - authProvidersForConfig(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthConfigProvidersConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthConfigProviderssConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + authProvidersForConfig( + filter: SalesforceAuthConfigProvidersConnectionFilter + sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum + sortByField: SalesforceAuthConfigProvidersSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthConfigProviderssConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -220035,12 +213164,8 @@ type SalesforceAuthConfigProviders implements OneGraphNode { Authentication Provider ID """ authProvider: SalesforceAuthConfigProvidersAuthProviderUnion! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -220208,41 +213333,27 @@ type SalesforceSamlSsoConfig implements OneGraphNode { """ Collection of Salesforce AuthConfigProviders """ - authConfigProvidersPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthConfigProvidersConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthConfigProviderssConnection + authConfigProvidersPlural( + filter: SalesforceAuthConfigProvidersConnectionFilter + sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum + sortByField: SalesforceAuthConfigProvidersSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthConfigProviderssConnection """ Collection of Salesforce LoginHistory """ - loginHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LoginHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLoginHistorysConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + loginHistories( + filter: SalesforceLoginHistoryConnectionFilter + sortByCustomField: SalesforceLoginHistorySortByFieldEnum + sortByField: SalesforceLoginHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLoginHistorysConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -220342,41 +213453,27 @@ type SalesforceLoginHistory implements OneGraphNode { """ Collection of Salesforce AuthSession """ - authSessions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthSessionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthSessionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AuthSessions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthSessionsConnection + authSessions( + filter: SalesforceAuthSessionConnectionFilter + sortByCustomField: SalesforceAuthSessionSortByFieldEnum + sortByField: SalesforceAuthSessionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthSessionsConnection """ Collection of Salesforce VerificationHistory """ - verificationHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVerificationHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVerificationHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceVerificationHistorysConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + verificationHistories( + filter: SalesforceVerificationHistoryConnectionFilter + sortByCustomField: SalesforceVerificationHistorySortByFieldEnum + sortByField: SalesforceVerificationHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceVerificationHistorysConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -220466,57 +213563,38 @@ type SalesforceAuthSession implements OneGraphNode { """ Collection of Salesforce AuthSession """ - authSessions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthSessionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthSessionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AuthSessions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthSessionsConnection + authSessions( + filter: SalesforceAuthSessionConnectionFilter + sortByCustomField: SalesforceAuthSessionSortByFieldEnum + sortByField: SalesforceAuthSessionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthSessionsConnection """ Collection of Salesforce IdpEventLog """ - idpEventLogs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdpEventLogConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdpEventLogSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdpEventLogSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of IdpEventLogs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceIdpEventLogsConnection + idpEventLogs( + filter: SalesforceIdpEventLogConnectionFilter + sortByCustomField: SalesforceIdpEventLogSortByFieldEnum + sortByField: SalesforceIdpEventLogSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceIdpEventLogsConnection """ Collection of Salesforce SessionPermSetActivation """ - sessionPermSetActivations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSessionPermSetActivationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SessionPermSetActivations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSessionPermSetActivationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + sessionPermSetActivations( + filter: SalesforceSessionPermSetActivationConnectionFilter + sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum + sortByField: SalesforceSessionPermSetActivationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSessionPermSetActivationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -220583,12 +213661,8 @@ type SalesforceIdpEventLog implements OneGraphNode { Has Logout URL """ optionsHasLogoutUrl: Boolean! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -220696,153 +213770,104 @@ type SalesforceConnectedApplication implements OneGraphNode { """ Collection of Salesforce IdpEventLog """ - idpEventLogs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdpEventLogConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdpEventLogSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdpEventLogSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of IdpEventLogs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceIdpEventLogsConnection + idpEventLogs( + filter: SalesforceIdpEventLogConnectionFilter + sortByCustomField: SalesforceIdpEventLogSortByFieldEnum + sortByField: SalesforceIdpEventLogSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceIdpEventLogsConnection """ Collection of Salesforce InstalledMobileApp """ - installedMobileApps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceInstalledMobileAppConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceInstalledMobileAppSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceInstalledMobileAppSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of InstalledMobileApps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceInstalledMobileAppsConnection + installedMobileApps( + filter: SalesforceInstalledMobileAppConnectionFilter + sortByCustomField: SalesforceInstalledMobileAppSortByFieldEnum + sortByField: SalesforceInstalledMobileAppSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceInstalledMobileAppsConnection """ Collection of Salesforce SetupEntityAccess """ - setupEntityAccessItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSetupEntityAccesssConnection + setupEntityAccessItems( + filter: SalesforceSetupEntityAccessConnectionFilter + sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum + sortByField: SalesforceSetupEntityAccessSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSetupEntityAccesssConnection """ Collection of Salesforce UserAppMenuCustomization """ - userAppMenuCustomizations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppMenuCustomizationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserAppMenuCustomizationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserAppMenuCustomizations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserAppMenuCustomizationsConnection + userAppMenuCustomizations( + filter: SalesforceUserAppMenuCustomizationConnectionFilter + sortByCustomField: SalesforceUserAppMenuCustomizationSortByFieldEnum + sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserAppMenuCustomizationsConnection """ Collection of Salesforce UserProvAccount """ - userProvAccounts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvAccountConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvAccountSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvAccountSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvAccounts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvAccountsConnection + userProvAccounts( + filter: SalesforceUserProvAccountConnectionFilter + sortByCustomField: SalesforceUserProvAccountSortByFieldEnum + sortByField: SalesforceUserProvAccountSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvAccountsConnection """ Collection of Salesforce UserProvAccountStaging """ - userProvAccountStagings(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvAccountStagingConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvAccountStagingSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvAccountStagingSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvAccountStagings to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvAccountStagingsConnection + userProvAccountStagings( + filter: SalesforceUserProvAccountStagingConnectionFilter + sortByCustomField: SalesforceUserProvAccountStagingSortByFieldEnum + sortByField: SalesforceUserProvAccountStagingSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvAccountStagingsConnection """ Collection of Salesforce UserProvisioningConfig """ - userProvisioningConfigs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningConfigConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvisioningConfigs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningConfigsConnection + userProvisioningConfigs( + filter: SalesforceUserProvisioningConfigConnectionFilter + sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum + sortByField: SalesforceUserProvisioningConfigSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningConfigsConnection """ Collection of Salesforce UserProvisioningRequest """ - userProvisioningRequests(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningRequestsConnection + userProvisioningRequests( + filter: SalesforceUserProvisioningRequestConnectionFilter + sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum + sortByField: SalesforceUserProvisioningRequestSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningRequestsConnection """ Collection of Salesforce VerificationHistory """ - verificationHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVerificationHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVerificationHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceVerificationHistorysConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + verificationHistories( + filter: SalesforceVerificationHistoryConnectionFilter + sortByCustomField: SalesforceVerificationHistorySortByFieldEnum + sortByField: SalesforceVerificationHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceVerificationHistorysConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -220982,73 +214007,49 @@ type SalesforceUserProvisioningRequest implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce UserProvisioningLog """ - userProvisioningLogs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningLogConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningLogSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningLogSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvisioningLogs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningLogsConnection + userProvisioningLogs( + filter: SalesforceUserProvisioningLogConnectionFilter + sortByCustomField: SalesforceUserProvisioningLogSortByFieldEnum + sortByField: SalesforceUserProvisioningLogSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningLogsConnection """ Collection of Salesforce UserProvisioningRequest """ - userProvisioningRequests(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningRequestsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userProvisioningRequests( + filter: SalesforceUserProvisioningRequestConnectionFilter + sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum + sortByField: SalesforceUserProvisioningRequestSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningRequestsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -221122,25 +214123,16 @@ type SalesforceWaveCompatibilityCheckItem implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -221386,25 +214378,16 @@ type SalesforceFlowInterview implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - recordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + recordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -221471,12 +214454,8 @@ type SalesforceFlowRecordRelation implements OneGraphNode { Record ID """ relatedRecord: SalesforceFlowRecordRelationRelatedRecordUnion! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -221885,12 +214864,8 @@ type SalesforceApexTestResultLimits implements OneGraphNode { LimitExceptions """ limitExceptions: String - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -222026,41 +215001,27 @@ type SalesforceApexTestRunResult implements OneGraphNode { """ Collection of Salesforce ApexTestQueueItem """ - apexTestQueueItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestQueueItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestQueueItemsConnection + apexTestQueueItems( + filter: SalesforceApexTestQueueItemConnectionFilter + sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum + sortByField: SalesforceApexTestQueueItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestQueueItemsConnection """ Collection of Salesforce ApexTestResult """ - apexTestResults(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestResultsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + apexTestResults( + filter: SalesforceApexTestResultConnectionFilter + sortByCustomField: SalesforceApexTestResultSortByFieldEnum + sortByField: SalesforceApexTestResultSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestResultsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -222305,25 +215266,16 @@ type SalesforceApexLog implements OneGraphNode { """ Collection of Salesforce ApexTestResult """ - apexTestResults(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestResultsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + apexTestResults( + filter: SalesforceApexTestResultConnectionFilter + sortByCustomField: SalesforceApexTestResultSortByFieldEnum + sortByField: SalesforceApexTestResultSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestResultsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -222409,25 +215361,16 @@ type SalesforceApexTestResult implements OneGraphNode { """ Collection of Salesforce ApexTestResultLimits """ - apexTestResults(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultLimitsConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestResultLimitsSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultLimitsSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTestResultLimits to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestResultLimitssConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + apexTestResults( + filter: SalesforceApexTestResultLimitsConnectionFilter + sortByCustomField: SalesforceApexTestResultLimitsSortByFieldEnum + sortByField: SalesforceApexTestResultLimitsSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestResultLimitssConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -222828,89 +215771,60 @@ type SalesforceAsyncApexJob implements OneGraphNode { """ Collection of Salesforce ApexTestQueueItem """ - apexTestQueueItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestQueueItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestQueueItemsConnection + apexTestQueueItems( + filter: SalesforceApexTestQueueItemConnectionFilter + sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum + sortByField: SalesforceApexTestQueueItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestQueueItemsConnection """ Collection of Salesforce ApexTestResult """ - apexTestResults(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestResultsConnection + apexTestResults( + filter: SalesforceApexTestResultConnectionFilter + sortByCustomField: SalesforceApexTestResultSortByFieldEnum + sortByField: SalesforceApexTestResultSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestResultsConnection """ Collection of Salesforce ApexTestRunResult """ - asyncApex(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestRunResultConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestRunResultSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestRunResultSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTestRunResults to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestRunResultsConnection + asyncApex( + filter: SalesforceApexTestRunResultConnectionFilter + sortByCustomField: SalesforceApexTestRunResultSortByFieldEnum + sortByField: SalesforceApexTestRunResultSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestRunResultsConnection """ Collection of Salesforce AsyncApexJob """ - asyncApexJobs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAsyncApexJobConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAsyncApexJobSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AsyncApexJobs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAsyncApexJobsConnection + asyncApexJobs( + filter: SalesforceAsyncApexJobConnectionFilter + sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum + sortByField: SalesforceAsyncApexJobSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAsyncApexJobsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -222976,41 +215890,27 @@ type SalesforceApexTestQueueItem implements OneGraphNode { """ Collection of Salesforce ApexTestResult """ - apexTestResults(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestResultsConnection + apexTestResults( + filter: SalesforceApexTestResultConnectionFilter + sortByCustomField: SalesforceApexTestResultSortByFieldEnum + sortByField: SalesforceApexTestResultSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestResultsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -223110,169 +216010,115 @@ type SalesforceApexClass implements OneGraphNode { """ Collection of Salesforce ApexTestQueueItem """ - apexTestQueueItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestQueueItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestQueueItemsConnection + apexTestQueueItems( + filter: SalesforceApexTestQueueItemConnectionFilter + sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum + sortByField: SalesforceApexTestQueueItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestQueueItemsConnection """ Collection of Salesforce ApexTestResult """ - apexTestResults(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestResultsConnection + apexTestResults( + filter: SalesforceApexTestResultConnectionFilter + sortByCustomField: SalesforceApexTestResultSortByFieldEnum + sortByField: SalesforceApexTestResultSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestResultsConnection """ Collection of Salesforce AsyncApexJob """ - asyncApexJobs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAsyncApexJobConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAsyncApexJobSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AsyncApexJobs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAsyncApexJobsConnection + asyncApexJobs( + filter: SalesforceAsyncApexJobConnectionFilter + sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum + sortByField: SalesforceAsyncApexJobSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAsyncApexJobsConnection """ Collection of Salesforce AuthProvider """ - authProviders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthProviderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthProviderSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthProviderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AuthProviders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthProvidersConnection + authProviders( + filter: SalesforceAuthProviderConnectionFilter + sortByCustomField: SalesforceAuthProviderSortByFieldEnum + sortByField: SalesforceAuthProviderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthProvidersConnection """ Collection of Salesforce EmailServicesFunction """ - emailServicesFunctions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailServicesFunctionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailServicesFunctionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailServicesFunctionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailServicesFunctions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailServicesFunctionsConnection + emailServicesFunctions( + filter: SalesforceEmailServicesFunctionConnectionFilter + sortByCustomField: SalesforceEmailServicesFunctionSortByFieldEnum + sortByField: SalesforceEmailServicesFunctionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailServicesFunctionsConnection """ Collection of Salesforce ExternalDataSource """ - externalDataSources(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataSourceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataSourceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceExternalDataSourcesConnection + externalDataSources( + filter: SalesforceExternalDataSourceConnectionFilter + sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum + sortByField: SalesforceExternalDataSourceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceExternalDataSourcesConnection """ Collection of Salesforce SamlSsoConfig """ - samlSsoConfigs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSamlSsoConfigConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSamlSsoConfigSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSamlSsoConfigSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SamlSsoConfigs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSamlSsoConfigsConnection + samlSsoConfigs( + filter: SalesforceSamlSsoConfigConnectionFilter + sortByCustomField: SalesforceSamlSsoConfigSortByFieldEnum + sortByField: SalesforceSamlSsoConfigSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSamlSsoConfigsConnection """ Collection of Salesforce SetupEntityAccess """ - setupEntityAccessItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSetupEntityAccesssConnection + setupEntityAccessItems( + filter: SalesforceSetupEntityAccessConnectionFilter + sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum + sortByField: SalesforceSetupEntityAccessSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSetupEntityAccesssConnection """ Collection of Salesforce TestSuiteMembership """ - testSuiteMemberships(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTestSuiteMembershipConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TestSuiteMemberships to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTestSuiteMembershipsConnection + testSuiteMemberships( + filter: SalesforceTestSuiteMembershipConnectionFilter + sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum + sortByField: SalesforceTestSuiteMembershipSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTestSuiteMembershipsConnection """ Collection of Salesforce TransactionSecurityPolicy """ - transactionSecurityPolicies(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTransactionSecurityPolicyConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTransactionSecurityPolicySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TransactionSecurityPolicies to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTransactionSecurityPolicysConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + transactionSecurityPolicies( + filter: SalesforceTransactionSecurityPolicyConnectionFilter + sortByCustomField: SalesforceTransactionSecurityPolicySortByFieldEnum + sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTransactionSecurityPolicysConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -223386,89 +216232,60 @@ type SalesforceAuthProvider implements OneGraphNode { """ Collection of Salesforce AuthConfigProviders """ - authConfigProvidersPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthConfigProvidersConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthConfigProviderssConnection + authConfigProvidersPlural( + filter: SalesforceAuthConfigProvidersConnectionFilter + sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum + sortByField: SalesforceAuthConfigProvidersSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthConfigProviderssConnection """ Collection of Salesforce ExternalDataSource """ - externalDataSources(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataSourceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataSourceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceExternalDataSourcesConnection + externalDataSources( + filter: SalesforceExternalDataSourceConnectionFilter + sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum + sortByField: SalesforceExternalDataSourceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceExternalDataSourcesConnection """ Collection of Salesforce ExternalDataUserAuth """ - externalDataUserAuths(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataUserAuthConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceExternalDataUserAuthsConnection + externalDataUserAuths( + filter: SalesforceExternalDataUserAuthConnectionFilter + sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum + sortByField: SalesforceExternalDataUserAuthSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceExternalDataUserAuthsConnection """ Collection of Salesforce LoginHistory """ - loginHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LoginHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLoginHistorysConnection + loginHistories( + filter: SalesforceLoginHistoryConnectionFilter + sortByCustomField: SalesforceLoginHistorySortByFieldEnum + sortByField: SalesforceLoginHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLoginHistorysConnection """ Collection of Salesforce NamedCredential """ - namedCredentials(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNamedCredentialConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNamedCredentialSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNamedCredentialSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of NamedCredentials to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceNamedCredentialsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + namedCredentials( + filter: SalesforceNamedCredentialConnectionFilter + sortByCustomField: SalesforceNamedCredentialSortByFieldEnum + sortByField: SalesforceNamedCredentialSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceNamedCredentialsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -223586,73 +216403,49 @@ type SalesforceExternalDataSource implements OneGraphNode { """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce ExternalDataUserAuth """ - userAuths(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataUserAuthConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceExternalDataUserAuthsConnection + userAuths( + filter: SalesforceExternalDataUserAuthConnectionFilter + sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum + sortByField: SalesforceExternalDataUserAuthSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceExternalDataUserAuthsConnection """ Collection of Salesforce Product2 """ - product2s(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2ConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProduct2SortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2SortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Product2s to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProduct2sConnection + product2s( + filter: SalesforceProduct2ConnectionFilter + sortByCustomField: SalesforceProduct2SortByFieldEnum + sortByField: SalesforceProduct2SortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProduct2sConnection """ Collection of Salesforce SetupEntityAccess """ - setupEntityAccessItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupEntityAccessConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSetupEntityAccesssConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + setupEntityAccessItems( + filter: SalesforceSetupEntityAccessConnectionFilter + sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum + sortByField: SalesforceSetupEntityAccessSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSetupEntityAccesssConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -223754,297 +216547,203 @@ type SalesforceProduct2 implements OneGraphNode { """ Collection of Salesforce Asset """ - assets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Assets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetsConnection + assets( + filter: SalesforceAssetConnectionFilter + sortByCustomField: SalesforceAssetSortByFieldEnum + sortByField: SalesforceAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetsConnection """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emails( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: SalesforceEmailMessageSortByFieldEnum + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + events( + filter: SalesforceEventConnectionFilter + sortByCustomField: SalesforceEventSortByFieldEnum + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Note """ - notes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Notes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceNotesConnection + notes( + filter: SalesforceNoteConnectionFilter + sortByCustomField: SalesforceNoteSortByFieldEnum + sortByField: SalesforceNoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceNotesConnection """ Collection of Salesforce OpportunityLineItem """ - opportunityLineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityLineItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityLineItemsConnection + opportunityLineItems( + filter: SalesforceOpportunityLineItemConnectionFilter + sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum + sortByField: SalesforceOpportunityLineItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityLineItemsConnection """ Collection of Salesforce OrderItem """ - orderItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderItemsConnection + orderItems( + filter: SalesforceOrderItemConnectionFilter + sortByCustomField: SalesforceOrderItemSortByFieldEnum + sortByField: SalesforceOrderItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderItemsConnection """ Collection of Salesforce PricebookEntry """ - pricebookEntries(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebookEntryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePricebookEntrySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebookEntrySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PricebookEntries to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePricebookEntrysConnection + pricebookEntries( + filter: SalesforcePricebookEntryConnectionFilter + sortByCustomField: SalesforcePricebookEntrySortByFieldEnum + sortByField: SalesforcePricebookEntrySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePricebookEntrysConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce Product2Feed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2FeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProduct2FeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2FeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Product2Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProduct2FeedsConnection + feeds( + filter: SalesforceProduct2FeedConnectionFilter + sortByCustomField: SalesforceProduct2FeedSortByFieldEnum + sortByField: SalesforceProduct2FeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProduct2FeedsConnection """ Collection of Salesforce Product2History """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2HistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProduct2HistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2HistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Product2Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProduct2HistorysConnection + histories( + filter: SalesforceProduct2HistoryConnectionFilter + sortByCustomField: SalesforceProduct2HistorySortByFieldEnum + sortByField: SalesforceProduct2HistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProduct2HistorysConnection """ Collection of Salesforce Task """ - tasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + tasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: SalesforceTaskSortByFieldEnum + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -224136,25 +216835,16 @@ type SalesforceAttachment implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -224278,281 +216968,192 @@ type SalesforceSolution implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce CaseSolution """ - caseSolutions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseSolutionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSolutionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSolutionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseSolutions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseSolutionsConnection + caseSolutions( + filter: SalesforceCaseSolutionConnectionFilter + sortByCustomField: SalesforceCaseSolutionSortByFieldEnum + sortByField: SalesforceCaseSolutionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseSolutionsConnection """ Collection of Salesforce CategoryData """ - categoryDatas(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCategoryDataConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCategoryDataSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCategoryDataSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CategoryDatas to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCategoryDatasConnection + categoryDatas( + filter: SalesforceCategoryDataConnectionFilter + sortByCustomField: SalesforceCategoryDataSortByFieldEnum + sortByField: SalesforceCategoryDataSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCategoryDatasConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emails( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: SalesforceEmailMessageSortByFieldEnum + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + events( + filter: SalesforceEventConnectionFilter + sortByCustomField: SalesforceEventSortByFieldEnum + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce SolutionFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSolutionFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SolutionFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSolutionFeedsConnection + feeds( + filter: SalesforceSolutionFeedConnectionFilter + sortByCustomField: SalesforceSolutionFeedSortByFieldEnum + sortByField: SalesforceSolutionFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSolutionFeedsConnection """ Collection of Salesforce SolutionHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSolutionHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SolutionHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSolutionHistorysConnection + histories( + filter: SalesforceSolutionHistoryConnectionFilter + sortByCustomField: SalesforceSolutionHistorySortByFieldEnum + sortByField: SalesforceSolutionHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSolutionHistorysConnection """ Collection of Salesforce Task """ - tasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection + tasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: SalesforceTaskSortByFieldEnum + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection """ Collection of Salesforce Vote """ - votes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Votes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceVotesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + votes( + filter: SalesforceVoteConnectionFilter + sortByCustomField: SalesforceVoteSortByFieldEnum + sortByField: SalesforceVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceVotesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -224750,185 +217351,126 @@ type SalesforceTask implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emailMessages(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emailMessages( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: SalesforceEmailMessageSortByFieldEnum + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Task """ - recurringTasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection + recurringTasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: SalesforceTaskSortByFieldEnum + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection """ Collection of Salesforce TaskFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TaskFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTaskFeedsConnection + feeds( + filter: SalesforceTaskFeedConnectionFilter + sortByCustomField: SalesforceTaskFeedSortByFieldEnum + sortByField: SalesforceTaskFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTaskFeedsConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -224980,25 +217522,16 @@ type SalesforceEntitySubscription implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -225404,137 +217937,93 @@ type SalesforceReport implements OneGraphNode { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce DashboardComponent """ - dashboardComponents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardComponentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardComponentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardComponentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DashboardComponents to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDashboardComponentsConnection + dashboardComponents( + filter: SalesforceDashboardComponentConnectionFilter + sortByCustomField: SalesforceDashboardComponentSortByFieldEnum + sortByField: SalesforceDashboardComponentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDashboardComponentsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ReportFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceReportFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ReportFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceReportFeedsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feeds( + filter: SalesforceReportFeedConnectionFilter + sortByCustomField: SalesforceReportFeedSortByFieldEnum + sortByField: SalesforceReportFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceReportFeedsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -225572,121 +218061,82 @@ type SalesforceDashboardComponent implements OneGraphNode { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce DashboardComponentFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardComponentFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DashboardComponentFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDashboardComponentFeedsConnection + feeds( + filter: SalesforceDashboardComponentFeedConnectionFilter + sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum + sortByField: SalesforceDashboardComponentFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDashboardComponentFeedsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -225906,137 +218356,93 @@ type SalesforceDashboard implements OneGraphNode { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce DashboardComponent """ - dashboardComponents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardComponentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardComponentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardComponentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DashboardComponents to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDashboardComponentsConnection + dashboardComponents( + filter: SalesforceDashboardComponentConnectionFilter + sortByCustomField: SalesforceDashboardComponentSortByFieldEnum + sortByField: SalesforceDashboardComponentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDashboardComponentsConnection """ Collection of Salesforce DashboardFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DashboardFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDashboardFeedsConnection + feeds( + filter: SalesforceDashboardFeedConnectionFilter + sortByCustomField: SalesforceDashboardFeedSortByFieldEnum + sortByField: SalesforceDashboardFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDashboardFeedsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -226128,73 +218534,49 @@ type SalesforceFolder implements OneGraphNode { """ Collection of Salesforce Dashboard """ - dashboards(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Dashboards to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDashboardsConnection + dashboards( + filter: SalesforceDashboardConnectionFilter + sortByCustomField: SalesforceDashboardSortByFieldEnum + sortByField: SalesforceDashboardSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDashboardsConnection """ Collection of Salesforce Document """ - documents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDocumentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDocumentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDocumentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Documents to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDocumentsConnection + documents( + filter: SalesforceDocumentConnectionFilter + sortByCustomField: SalesforceDocumentSortByFieldEnum + sortByField: SalesforceDocumentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDocumentsConnection """ Collection of Salesforce EmailTemplate """ - emailTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailTemplatesConnection + emailTemplates( + filter: SalesforceEmailTemplateConnectionFilter + sortByCustomField: SalesforceEmailTemplateSortByFieldEnum + sortByField: SalesforceEmailTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailTemplatesConnection """ Collection of Salesforce Report """ - reports(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceReportSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Reports to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceReportsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + reports( + filter: SalesforceReportConnectionFilter + sortByCustomField: SalesforceReportSortByFieldEnum + sortByField: SalesforceReportSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceReportsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -226322,57 +218704,38 @@ type SalesforceDocument implements OneGraphNode { """ Collection of Salesforce CustomBrandAsset """ - customBrandAssets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomBrandAssetsConnection + customBrandAssets( + filter: SalesforceCustomBrandAssetConnectionFilter + sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum + sortByField: SalesforceCustomBrandAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomBrandAssetsConnection """ Collection of Salesforce DocumentAttachmentMap """ - documentAttachmentMaps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDocumentAttachmentMapConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DocumentAttachmentMaps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDocumentAttachmentMapsConnection + documentAttachmentMaps( + filter: SalesforceDocumentAttachmentMapConnectionFilter + sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum + sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDocumentAttachmentMapsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -226925,12 +219288,8 @@ type SalesforceStampAssignment implements OneGraphNode { User ID """ subject: SalesforceUser! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -227116,41 +219475,27 @@ type SalesforceStamp implements OneGraphNode { """ Collection of Salesforce CustomBrand """ - customBrands(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CustomBrands to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomBrandsConnection + customBrands( + filter: SalesforceCustomBrandConnectionFilter + sortByCustomField: SalesforceCustomBrandSortByFieldEnum + sortByField: SalesforceCustomBrandSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomBrandsConnection """ Collection of Salesforce StampAssignment """ - stampAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStampAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStampAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStampAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of StampAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceStampAssignmentsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + stampAssignments( + filter: SalesforceStampAssignmentConnectionFilter + sortByCustomField: SalesforceStampAssignmentSortByFieldEnum + sortByField: SalesforceStampAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceStampAssignmentsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -227202,25 +219547,16 @@ type SalesforceCustomBrand implements OneGraphNode { """ Collection of Salesforce CustomBrandAsset """ - customBrandAssets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomBrandAssetsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customBrandAssets( + filter: SalesforceCustomBrandAssetConnectionFilter + sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum + sortByField: SalesforceCustomBrandAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomBrandAssetsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -227283,12 +219619,8 @@ type SalesforceCustomBrandAsset implements OneGraphNode { Last Modified By ID """ lastModifiedBy: SalesforceUser! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -227591,57 +219923,38 @@ type SalesforceContentAsset implements OneGraphNode { """ Collection of Salesforce ChatterExtension """ - chatterExtensions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterExtensionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceChatterExtensionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterExtensionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ChatterExtensions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceChatterExtensionsConnection + chatterExtensions( + filter: SalesforceChatterExtensionConnectionFilter + sortByCustomField: SalesforceChatterExtensionSortByFieldEnum + sortByField: SalesforceChatterExtensionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceChatterExtensionsConnection """ Collection of Salesforce ContentDocument """ - contentDocuments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentsConnection + contentDocuments( + filter: SalesforceContentDocumentConnectionFilter + sortByCustomField: SalesforceContentDocumentSortByFieldEnum + sortByField: SalesforceContentDocumentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentsConnection """ Collection of Salesforce CustomBrandAsset """ - customBrandAssets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomBrandAssetsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customBrandAssets( + filter: SalesforceCustomBrandAssetConnectionFilter + sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum + sortByField: SalesforceCustomBrandAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomBrandAssetsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -227747,25 +220060,16 @@ type SalesforceChatterExtension implements OneGraphNode { """ Collection of Salesforce ChatterExtensionConfig """ - chatterExtensionConfigs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterExtensionConfigConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceChatterExtensionConfigSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterExtensionConfigSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ChatterExtensionConfigs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceChatterExtensionConfigsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + chatterExtensionConfigs( + filter: SalesforceChatterExtensionConfigConnectionFilter + sortByCustomField: SalesforceChatterExtensionConfigSortByFieldEnum + sortByField: SalesforceChatterExtensionConfigSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceChatterExtensionConfigsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -228032,12 +220336,8 @@ type SalesforceAuraDefinition implements OneGraphNode { Source """ source: String! - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -228133,41 +220433,27 @@ type SalesforceAuraDefinitionBundle implements OneGraphNode { """ Collection of Salesforce AuraDefinition """ - auraDefinitions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuraDefinitionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuraDefinitionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuraDefinitionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AuraDefinitions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuraDefinitionsConnection + auraDefinitions( + filter: SalesforceAuraDefinitionConnectionFilter + sortByCustomField: SalesforceAuraDefinitionSortByFieldEnum + sortByField: SalesforceAuraDefinitionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuraDefinitionsConnection """ Collection of Salesforce ChatterExtension """ - chatterExtensions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterExtensionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceChatterExtensionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterExtensionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ChatterExtensions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceChatterExtensionsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + chatterExtensions( + filter: SalesforceChatterExtensionConnectionFilter + sortByCustomField: SalesforceChatterExtensionSortByFieldEnum + sortByField: SalesforceChatterExtensionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceChatterExtensionsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -228290,25 +220576,16 @@ type SalesforceBusinessProcess implements OneGraphNode { """ Collection of Salesforce RecordType """ - recordTypes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceRecordTypeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceRecordTypeSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceRecordTypeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of RecordTypes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceRecordTypesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + recordTypes( + filter: SalesforceRecordTypeConnectionFilter + sortByCustomField: SalesforceRecordTypeSortByFieldEnum + sortByField: SalesforceRecordTypeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceRecordTypesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -228386,41 +220663,27 @@ type SalesforceRecordType implements OneGraphNode { """ Collection of Salesforce Campaign """ - campaigns(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Campaigns to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignsConnection + campaigns( + filter: SalesforceCampaignConnectionFilter + sortByCustomField: SalesforceCampaignSortByFieldEnum + sortByField: SalesforceCampaignSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignsConnection """ Collection of Salesforce ContentWorkspace """ - contentWorkspaces(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentWorkspaces to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspacesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + contentWorkspaces( + filter: SalesforceContentWorkspaceConnectionFilter + sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum + sortByField: SalesforceContentWorkspaceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspacesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -228522,137 +220785,93 @@ type SalesforceContentWorkspace implements OneGraphNode { """ Collection of Salesforce ContentDocument """ - contentDocuments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentsConnection + contentDocuments( + filter: SalesforceContentDocumentConnectionFilter + sortByCustomField: SalesforceContentDocumentSortByFieldEnum + sortByField: SalesforceContentDocumentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentFolderLink """ - contentFolderLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentFolderLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentFolderLinksConnection + contentFolderLinks( + filter: SalesforceContentFolderLinkConnectionFilter + sortByCustomField: SalesforceContentFolderLinkSortByFieldEnum + sortByField: SalesforceContentFolderLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentFolderLinksConnection """ Collection of Salesforce ContentNotification """ - contentNotifications(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentNotificationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentNotificationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentNotificationsConnection + contentNotifications( + filter: SalesforceContentNotificationConnectionFilter + sortByCustomField: SalesforceContentNotificationSortByFieldEnum + sortByField: SalesforceContentNotificationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentNotificationsConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce ContentWorkspaceDoc """ - contentWorkspaceDocs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceDocConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceDocSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceDocSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentWorkspaceDocs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspaceDocsConnection + contentWorkspaceDocs( + filter: SalesforceContentWorkspaceDocConnectionFilter + sortByCustomField: SalesforceContentWorkspaceDocSortByFieldEnum + sortByField: SalesforceContentWorkspaceDocSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspaceDocsConnection """ Collection of Salesforce ContentWorkspaceMember """ - contentWorkspaceMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspaceMembersConnection + contentWorkspaceMembers( + filter: SalesforceContentWorkspaceMemberConnectionFilter + sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum + sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspaceMembersConnection """ Collection of Salesforce ContentWorkspaceSubscription """ - contentWorkspaceSubscriptions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceSubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentWorkspaceSubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspaceSubscriptionsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + contentWorkspaceSubscriptions( + filter: SalesforceContentWorkspaceSubscriptionConnectionFilter + sortByCustomField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum + sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspaceSubscriptionsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -228794,281 +221013,192 @@ type SalesforceContentDocument implements OneGraphNode { """ Collection of Salesforce ContentAsset """ - contentAssets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentAssetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentAssets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentAssetsConnection + contentAssets( + filter: SalesforceContentAssetConnectionFilter + sortByCustomField: SalesforceContentAssetSortByFieldEnum + sortByField: SalesforceContentAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentAssetsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionsConnection + contentDistributions( + filter: SalesforceContentDistributionConnectionFilter + sortByCustomField: SalesforceContentDistributionSortByFieldEnum + sortByField: SalesforceContentDistributionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentFeedsConnection + feeds( + filter: SalesforceContentDocumentFeedConnectionFilter + sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum + sortByField: SalesforceContentDocumentFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentFeedsConnection """ Collection of Salesforce ContentDocumentHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentHistorysConnection + histories( + filter: SalesforceContentDocumentHistoryConnectionFilter + sortByCustomField: SalesforceContentDocumentHistorySortByFieldEnum + sortByField: SalesforceContentDocumentHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentHistorysConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentDocumentSubscription """ - contentDocumentSubscriptions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentSubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentSubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentSubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentSubscriptionsConnection + contentDocumentSubscriptions( + filter: SalesforceContentDocumentSubscriptionConnectionFilter + sortByCustomField: SalesforceContentDocumentSubscriptionSortByFieldEnum + sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentSubscriptionsConnection """ Collection of Salesforce ContentFolderMember """ - contentFolderMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentFolderMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentFolderMembersConnection + contentFolderMembers( + filter: SalesforceContentFolderMemberConnectionFilter + sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum + sortByField: SalesforceContentFolderMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentFolderMembersConnection """ Collection of Salesforce ContentNotification """ - contentNotifications(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentNotificationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentNotificationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentNotificationsConnection + contentNotifications( + filter: SalesforceContentNotificationConnectionFilter + sortByCustomField: SalesforceContentNotificationSortByFieldEnum + sortByField: SalesforceContentNotificationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentNotificationsConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce ContentVersionComment """ - contentVersionComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersionComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionCommentsConnection + contentVersionComments( + filter: SalesforceContentVersionCommentConnectionFilter + sortByCustomField: SalesforceContentVersionCommentSortByFieldEnum + sortByField: SalesforceContentVersionCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionCommentsConnection """ Collection of Salesforce ContentWorkspaceDoc """ - contentWorkspaceDocs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceDocConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceDocSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceDocSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentWorkspaceDocs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspaceDocsConnection + contentWorkspaceDocs( + filter: SalesforceContentWorkspaceDocConnectionFilter + sortByCustomField: SalesforceContentWorkspaceDocSortByFieldEnum + sortByField: SalesforceContentWorkspaceDocSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspaceDocsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -229282,537 +221412,368 @@ type SalesforceContentVersion implements OneGraphNode { """ Collection of Salesforce AccountFeed """ - accountFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountFeedsConnection + accountFeeds( + filter: SalesforceAccountFeedConnectionFilter + sortByCustomField: SalesforceAccountFeedSortByFieldEnum + sortByField: SalesforceAccountFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountFeedsConnection """ Collection of Salesforce AssetFeed """ - assetFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetFeedsConnection + assetFeeds( + filter: SalesforceAssetFeedConnectionFilter + sortByCustomField: SalesforceAssetFeedSortByFieldEnum + sortByField: SalesforceAssetFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetFeedsConnection """ Collection of Salesforce AssetRelationshipFeed """ - assetRelationshipFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetRelationshipFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetRelationshipFeedsConnection + assetRelationshipFeeds( + filter: SalesforceAssetRelationshipFeedConnectionFilter + sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum + sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetRelationshipFeedsConnection """ Collection of Salesforce CampaignFeed """ - campaignFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CampaignFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignFeedsConnection + campaignFeeds( + filter: SalesforceCampaignFeedConnectionFilter + sortByCustomField: SalesforceCampaignFeedSortByFieldEnum + sortByField: SalesforceCampaignFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignFeedsConnection """ Collection of Salesforce CaseFeed """ - caseFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseFeedsConnection + caseFeeds( + filter: SalesforceCaseFeedConnectionFilter + sortByCustomField: SalesforceCaseFeedSortByFieldEnum + sortByField: SalesforceCaseFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseFeedsConnection """ Collection of Salesforce CollaborationGroupFeed """ - collaborationGroupFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupFeedsConnection + collaborationGroupFeeds( + filter: SalesforceCollaborationGroupFeedConnectionFilter + sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum + sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupFeedsConnection """ Collection of Salesforce ContactFeed """ - contactFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContactFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactFeedsConnection + contactFeeds( + filter: SalesforceContactFeedConnectionFilter + sortByCustomField: SalesforceContactFeedSortByFieldEnum + sortByField: SalesforceContactFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactFeedsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionsConnection + contentDistributions( + filter: SalesforceContentDistributionConnectionFilter + sortByCustomField: SalesforceContentDistributionSortByFieldEnum + sortByField: SalesforceContentDistributionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocument """ - contentDocuments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentsConnection + contentDocuments( + filter: SalesforceContentDocumentConnectionFilter + sortByCustomField: SalesforceContentDocumentSortByFieldEnum + sortByField: SalesforceContentDocumentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentsConnection """ Collection of Salesforce ContentDocumentFeed """ - contentDocumentFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentFeedsConnection + contentDocumentFeeds( + filter: SalesforceContentDocumentFeedConnectionFilter + sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum + sortByField: SalesforceContentDocumentFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentFeedsConnection """ Collection of Salesforce ContentNotification """ - contentNotifications(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentNotificationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentNotificationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentNotificationsConnection + contentNotifications( + filter: SalesforceContentNotificationConnectionFilter + sortByCustomField: SalesforceContentNotificationSortByFieldEnum + sortByField: SalesforceContentNotificationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentNotificationsConnection """ Collection of Salesforce ContentVersionComment """ - contentVersionComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersionComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionCommentsConnection + contentVersionComments( + filter: SalesforceContentVersionCommentConnectionFilter + sortByCustomField: SalesforceContentVersionCommentSortByFieldEnum + sortByField: SalesforceContentVersionCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionCommentsConnection """ Collection of Salesforce ContentVersionHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersionHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionHistorysConnection + histories( + filter: SalesforceContentVersionHistoryConnectionFilter + sortByCustomField: SalesforceContentVersionHistorySortByFieldEnum + sortByField: SalesforceContentVersionHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionHistorysConnection """ Collection of Salesforce ContentVersionRating """ - contentVersionRatings(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionRatingConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionRatingSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionRatingSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersionRatings to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionRatingsConnection + contentVersionRatings( + filter: SalesforceContentVersionRatingConnectionFilter + sortByCustomField: SalesforceContentVersionRatingSortByFieldEnum + sortByField: SalesforceContentVersionRatingSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionRatingsConnection """ Collection of Salesforce ContractFeed """ - contractFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContractFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractFeedsConnection + contractFeeds( + filter: SalesforceContractFeedConnectionFilter + sortByCustomField: SalesforceContractFeedSortByFieldEnum + sortByField: SalesforceContractFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractFeedsConnection """ Collection of Salesforce DashboardComponentFeed """ - dashboardComponentFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardComponentFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DashboardComponentFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDashboardComponentFeedsConnection + dashboardComponentFeeds( + filter: SalesforceDashboardComponentFeedConnectionFilter + sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum + sortByField: SalesforceDashboardComponentFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDashboardComponentFeedsConnection """ Collection of Salesforce DashboardFeed """ - dashboardFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DashboardFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDashboardFeedsConnection + dashboardFeeds( + filter: SalesforceDashboardFeedConnectionFilter + sortByCustomField: SalesforceDashboardFeedSortByFieldEnum + sortByField: SalesforceDashboardFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDashboardFeedsConnection """ Collection of Salesforce EventFeed """ - eventFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EventFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventFeedsConnection + eventFeeds( + filter: SalesforceEventFeedConnectionFilter + sortByCustomField: SalesforceEventFeedSortByFieldEnum + sortByField: SalesforceEventFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventFeedsConnection """ Collection of Salesforce FeedAttachment """ - feedAttachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedAttachmentsConnection + feedAttachments( + filter: SalesforceFeedAttachmentConnectionFilter + sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum + sortByField: SalesforceFeedAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce LeadFeed """ - leadFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LeadFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadFeedsConnection + leadFeeds( + filter: SalesforceLeadFeedConnectionFilter + sortByCustomField: SalesforceLeadFeedSortByFieldEnum + sortByField: SalesforceLeadFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadFeedsConnection """ Collection of Salesforce OpportunityFeed """ - opportunityFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityFeedsConnection + opportunityFeeds( + filter: SalesforceOpportunityFeedConnectionFilter + sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum + sortByField: SalesforceOpportunityFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityFeedsConnection """ Collection of Salesforce OrderFeed """ - orderFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderFeedsConnection + orderFeeds( + filter: SalesforceOrderFeedConnectionFilter + sortByCustomField: SalesforceOrderFeedSortByFieldEnum + sortByField: SalesforceOrderFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderFeedsConnection """ Collection of Salesforce OrderItemFeed """ - orderItemFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderItemFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderItemFeedsConnection + orderItemFeeds( + filter: SalesforceOrderItemFeedConnectionFilter + sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum + sortByField: SalesforceOrderItemFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderItemFeedsConnection """ Collection of Salesforce Product2Feed """ - product2Feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2FeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProduct2FeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2FeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Product2Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProduct2FeedsConnection + product2Feeds( + filter: SalesforceProduct2FeedConnectionFilter + sortByCustomField: SalesforceProduct2FeedSortByFieldEnum + sortByField: SalesforceProduct2FeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProduct2FeedsConnection """ Collection of Salesforce ReportFeed """ - reportFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceReportFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ReportFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceReportFeedsConnection + reportFeeds( + filter: SalesforceReportFeedConnectionFilter + sortByCustomField: SalesforceReportFeedSortByFieldEnum + sortByField: SalesforceReportFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceReportFeedsConnection """ Collection of Salesforce SiteFeed """ - siteFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSiteFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SiteFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSiteFeedsConnection + siteFeeds( + filter: SalesforceSiteFeedConnectionFilter + sortByCustomField: SalesforceSiteFeedSortByFieldEnum + sortByField: SalesforceSiteFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSiteFeedsConnection """ Collection of Salesforce SolutionFeed """ - solutionFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSolutionFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SolutionFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSolutionFeedsConnection + solutionFeeds( + filter: SalesforceSolutionFeedConnectionFilter + sortByCustomField: SalesforceSolutionFeedSortByFieldEnum + sortByField: SalesforceSolutionFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSolutionFeedsConnection """ Collection of Salesforce TaskFeed """ - taskFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TaskFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTaskFeedsConnection + taskFeeds( + filter: SalesforceTaskFeedConnectionFilter + sortByCustomField: SalesforceTaskFeedSortByFieldEnum + sortByField: SalesforceTaskFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTaskFeedsConnection """ Collection of Salesforce TopicFeed """ - topicFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicFeedsConnection + topicFeeds( + filter: SalesforceTopicFeedConnectionFilter + sortByCustomField: SalesforceTopicFeedSortByFieldEnum + sortByField: SalesforceTopicFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicFeedsConnection """ Collection of Salesforce UserFeed """ - userFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserFeedsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userFeeds( + filter: SalesforceUserFeedConnectionFilter + sortByCustomField: SalesforceUserFeedSortByFieldEnum + sortByField: SalesforceUserFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserFeedsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -234211,185 +226172,126 @@ type SalesforceTopic implements OneGraphNode { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce CustomBrand """ - customBrands(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CustomBrands to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomBrandsConnection + customBrands( + filter: SalesforceCustomBrandConnectionFilter + sortByCustomField: SalesforceCustomBrandSortByFieldEnum + sortByField: SalesforceCustomBrandSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomBrandsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce KnowledgeableUser """ - knowledgeableUsers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceKnowledgeableUserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceKnowledgeableUserSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceKnowledgeableUserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of KnowledgeableUsers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceKnowledgeableUsersConnection + knowledgeableUsers( + filter: SalesforceKnowledgeableUserConnectionFilter + sortByCustomField: SalesforceKnowledgeableUserSortByFieldEnum + sortByField: SalesforceKnowledgeableUserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceKnowledgeableUsersConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection """ Collection of Salesforce TopicFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicFeedsConnection + feeds( + filter: SalesforceTopicFeedConnectionFilter + sortByCustomField: SalesforceTopicFeedSortByFieldEnum + sortByField: SalesforceTopicFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicFeedsConnection """ Collection of Salesforce TopicUserEvent """ - topicUserEvents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicUserEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicUserEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicUserEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicUserEvents to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicUserEventsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicUserEvents( + filter: SalesforceTopicUserEventConnectionFilter + sortByCustomField: SalesforceTopicUserEventSortByFieldEnum + sortByField: SalesforceTopicUserEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicUserEventsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -234441,25 +226343,16 @@ type SalesforceContentDocumentLink implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -234719,121 +226612,82 @@ type SalesforceOrganization implements OneGraphNode { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce CustomBrand """ - customBrands(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CustomBrands to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomBrandsConnection + customBrands( + filter: SalesforceCustomBrandConnectionFilter + sortByCustomField: SalesforceCustomBrandSortByFieldEnum + sortByField: SalesforceCustomBrandSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomBrandsConnection """ Collection of Salesforce EmailTemplate """ - emailTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailTemplatesConnection + emailTemplates( + filter: SalesforceEmailTemplateConnectionFilter + sortByCustomField: SalesforceEmailTemplateSortByFieldEnum + sortByField: SalesforceEmailTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailTemplatesConnection """ Collection of Salesforce Group """ - groups(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGroupConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGroupSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGroupSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Groups to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceGroupsConnection + groups( + filter: SalesforceGroupConnectionFilter + sortByCustomField: SalesforceGroupSortByFieldEnum + sortByField: SalesforceGroupSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceGroupsConnection """ Collection of Salesforce Report """ - reports(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceReportSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Reports to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceReportsConnection + reports( + filter: SalesforceReportConnectionFilter + sortByCustomField: SalesforceReportSortByFieldEnum + sortByField: SalesforceReportSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceReportsConnection """ Collection of Salesforce Stamp """ - stamps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStampConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStampSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStampSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Stamps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceStampsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + stamps( + filter: SalesforceStampConnectionFilter + sortByCustomField: SalesforceStampSortByFieldEnum + sortByField: SalesforceStampSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceStampsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -234923,377 +226777,258 @@ type SalesforceGroup implements OneGraphNode { """ Collection of Salesforce AccountShare """ - accountShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountSharesConnection + accountShares( + filter: SalesforceAccountShareConnectionFilter + sortByCustomField: SalesforceAccountShareSortByFieldEnum + sortByField: SalesforceAccountShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountSharesConnection """ Collection of Salesforce AssetShare """ - assetShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetSharesConnection + assetShares( + filter: SalesforceAssetShareConnectionFilter + sortByCustomField: SalesforceAssetShareSortByFieldEnum + sortByField: SalesforceAssetShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetSharesConnection """ Collection of Salesforce CampaignShare """ - campaignShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CampaignShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignSharesConnection + campaignShares( + filter: SalesforceCampaignShareConnectionFilter + sortByCustomField: SalesforceCampaignShareSortByFieldEnum + sortByField: SalesforceCampaignShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignSharesConnection """ Collection of Salesforce CaseShare """ - caseShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseSharesConnection + caseShares( + filter: SalesforceCaseShareConnectionFilter + sortByCustomField: SalesforceCaseShareSortByFieldEnum + sortByField: SalesforceCaseShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseSharesConnection """ Collection of Salesforce ContactShare """ - contactShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContactShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactSharesConnection + contactShares( + filter: SalesforceContactShareConnectionFilter + sortByCustomField: SalesforceContactShareSortByFieldEnum + sortByField: SalesforceContactShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactSharesConnection """ Collection of Salesforce ContentWorkspaceMember """ - contentWorkspaceMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspaceMembersConnection + contentWorkspaceMembers( + filter: SalesforceContentWorkspaceMemberConnectionFilter + sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum + sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspaceMembersConnection """ Collection of Salesforce FlowInterviewShare """ - flowInterviewShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowInterviewShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowInterviewShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowInterviewShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowInterviewShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowInterviewSharesConnection + flowInterviewShares( + filter: SalesforceFlowInterviewShareConnectionFilter + sortByCustomField: SalesforceFlowInterviewShareSortByFieldEnum + sortByField: SalesforceFlowInterviewShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowInterviewSharesConnection """ Collection of Salesforce ForecastShare """ - forecastShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceForecastShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceForecastShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceForecastShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ForecastShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceForecastSharesConnection + forecastShares( + filter: SalesforceForecastShareConnectionFilter + sortByCustomField: SalesforceForecastShareSortByFieldEnum + sortByField: SalesforceForecastShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceForecastSharesConnection """ Collection of Salesforce GroupMember """ - groupMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGroupMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGroupMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGroupMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of GroupMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceGroupMembersConnection + groupMembers( + filter: SalesforceGroupMemberConnectionFilter + sortByCustomField: SalesforceGroupMemberSortByFieldEnum + sortByField: SalesforceGroupMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceGroupMembersConnection """ Collection of Salesforce LeadShare """ - leadShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LeadShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadSharesConnection + leadShares( + filter: SalesforceLeadShareConnectionFilter + sortByCustomField: SalesforceLeadShareSortByFieldEnum + sortByField: SalesforceLeadShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadSharesConnection """ Collection of Salesforce ListEmailShare """ - listEmailShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListEmailShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ListEmailShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceListEmailSharesConnection + listEmailShares( + filter: SalesforceListEmailShareConnectionFilter + sortByCustomField: SalesforceListEmailShareSortByFieldEnum + sortByField: SalesforceListEmailShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceListEmailSharesConnection """ Collection of Salesforce MacroShare """ - macroShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMacroShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of MacroShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMacroSharesConnection + macroShares( + filter: SalesforceMacroShareConnectionFilter + sortByCustomField: SalesforceMacroShareSortByFieldEnum + sortByField: SalesforceMacroShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMacroSharesConnection """ Collection of Salesforce OpportunityShare """ - opportunityShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunitySharesConnection + opportunityShares( + filter: SalesforceOpportunityShareConnectionFilter + sortByCustomField: SalesforceOpportunityShareSortByFieldEnum + sortByField: SalesforceOpportunityShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunitySharesConnection """ Collection of Salesforce OrderShare """ - orderShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderSharesConnection + orderShares( + filter: SalesforceOrderShareConnectionFilter + sortByCustomField: SalesforceOrderShareSortByFieldEnum + sortByField: SalesforceOrderShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderSharesConnection """ Collection of Salesforce OrgDeleteRequestShare """ - orgDeleteRequestShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrgDeleteRequestShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrgDeleteRequestShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrgDeleteRequestShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrgDeleteRequestSharesConnection + orgDeleteRequestShares( + filter: SalesforceOrgDeleteRequestShareConnectionFilter + sortByCustomField: SalesforceOrgDeleteRequestShareSortByFieldEnum + sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrgDeleteRequestSharesConnection """ Collection of Salesforce QueueSobject """ - queueSobjects(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQueueSobjectConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceQueueSobjectSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQueueSobjectSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of QueueSobjects to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceQueueSobjectsConnection + queueSobjects( + filter: SalesforceQueueSobjectConnectionFilter + sortByCustomField: SalesforceQueueSobjectSortByFieldEnum + sortByField: SalesforceQueueSobjectSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceQueueSobjectsConnection """ Collection of Salesforce QuickTextShare """ - quickTextShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceQuickTextShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of QuickTextShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceQuickTextSharesConnection + quickTextShares( + filter: SalesforceQuickTextShareConnectionFilter + sortByCustomField: SalesforceQuickTextShareSortByFieldEnum + sortByField: SalesforceQuickTextShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceQuickTextSharesConnection """ Collection of Salesforce StreamingChannelShare """ - streamingChannelShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStreamingChannelShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStreamingChannelShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStreamingChannelShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of StreamingChannelShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceStreamingChannelSharesConnection + streamingChannelShares( + filter: SalesforceStreamingChannelShareConnectionFilter + sortByCustomField: SalesforceStreamingChannelShareSortByFieldEnum + sortByField: SalesforceStreamingChannelShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceStreamingChannelSharesConnection """ Collection of Salesforce TodayGoalShare """ - todayGoalShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTodayGoalShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTodayGoalShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTodayGoalShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TodayGoalShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTodayGoalSharesConnection + todayGoalShares( + filter: SalesforceTodayGoalShareConnectionFilter + sortByCustomField: SalesforceTodayGoalShareSortByFieldEnum + sortByField: SalesforceTodayGoalShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTodayGoalSharesConnection """ Collection of Salesforce User """ - delegatedUsers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Users to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUsersConnection + delegatedUsers( + filter: SalesforceUserConnectionFilter + sortByCustomField: SalesforceUserSortByFieldEnum + sortByField: SalesforceUserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUsersConnection """ Collection of Salesforce UserAppMenuCustomizationShare """ - userAppMenuCustomizationShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppMenuCustomizationShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserAppMenuCustomizationShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserAppMenuCustomizationSharesConnection + userAppMenuCustomizationShares( + filter: SalesforceUserAppMenuCustomizationShareConnectionFilter + sortByCustomField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum + sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserAppMenuCustomizationSharesConnection """ Collection of Salesforce UserProvisioningRequestShare """ - userProvisioningRequestShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningRequestShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvisioningRequestShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningRequestSharesConnection + userProvisioningRequestShares( + filter: SalesforceUserProvisioningRequestShareConnectionFilter + sortByCustomField: SalesforceUserProvisioningRequestShareSortByFieldEnum + sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningRequestSharesConnection """ Collection of Salesforce UserShare """ - userShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserSharesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userShares( + filter: SalesforceUserShareConnectionFilter + sortByCustomField: SalesforceUserShareSortByFieldEnum + sortByField: SalesforceUserShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserSharesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -235353,25 +227088,16 @@ type SalesforceForecastShare implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -235491,73 +227217,49 @@ type SalesforceUserRole implements OneGraphNode { """ Collection of Salesforce ForecastShare """ - forecastShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceForecastShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceForecastShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceForecastShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ForecastShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceForecastSharesConnection + forecastShares( + filter: SalesforceForecastShareConnectionFilter + sortByCustomField: SalesforceForecastShareSortByFieldEnum + sortByField: SalesforceForecastShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceForecastSharesConnection """ Collection of Salesforce Group """ - groups(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGroupConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGroupSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGroupSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Groups to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceGroupsConnection + groups( + filter: SalesforceGroupConnectionFilter + sortByCustomField: SalesforceGroupSortByFieldEnum + sortByField: SalesforceGroupSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceGroupsConnection """ Collection of Salesforce User """ - users(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Users to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUsersConnection + users( + filter: SalesforceUserConnectionFilter + sortByCustomField: SalesforceUserSortByFieldEnum + sortByField: SalesforceUserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUsersConnection """ Collection of Salesforce UserRole """ - userRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserRolesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userRoles( + filter: SalesforceUserRoleConnectionFilter + sortByCustomField: SalesforceUserRoleSortByFieldEnum + sortByField: SalesforceUserRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserRolesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -236267,5049 +227969,3470 @@ type SalesforceUser implements OneGraphNode { """ Collection of Salesforce AcceptedEventRelation """ - acceptedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAcceptedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAcceptedEventRelationsConnection + acceptedEventRelations( + filter: SalesforceAcceptedEventRelationConnectionFilter + sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum + sortByField: SalesforceAcceptedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAcceptedEventRelationsConnection """ Collection of Salesforce Account """ - accounts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Accounts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountsConnection + accounts( + filter: SalesforceAccountConnectionFilter + sortByCustomField: SalesforceAccountSortByFieldEnum + sortByField: SalesforceAccountSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountsConnection """ Collection of Salesforce AccountCleanInfo """ - accountCleanInfos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountCleanInfoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountCleanInfos to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountCleanInfosConnection + accountCleanInfos( + filter: SalesforceAccountCleanInfoConnectionFilter + sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum + sortByField: SalesforceAccountCleanInfoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountCleanInfosConnection """ Collection of Salesforce AccountCleanInfo """ - accountCleanInfoReviewers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountCleanInfoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountCleanInfos to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountCleanInfosConnection + accountCleanInfoReviewers( + filter: SalesforceAccountCleanInfoConnectionFilter + sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum + sortByField: SalesforceAccountCleanInfoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountCleanInfosConnection """ Collection of Salesforce AccountContactRole """ - accountContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountContactRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountContactRolesConnection + accountContactRoles( + filter: SalesforceAccountContactRoleConnectionFilter + sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum + sortByField: SalesforceAccountContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountContactRolesConnection """ Collection of Salesforce AccountFeed """ - accountFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountFeedsConnection + accountFeeds( + filter: SalesforceAccountFeedConnectionFilter + sortByCustomField: SalesforceAccountFeedSortByFieldEnum + sortByField: SalesforceAccountFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountFeedsConnection """ Collection of Salesforce AccountHistory """ - accountHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountHistorysConnection + accountHistories( + filter: SalesforceAccountHistoryConnectionFilter + sortByCustomField: SalesforceAccountHistorySortByFieldEnum + sortByField: SalesforceAccountHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountHistorysConnection """ Collection of Salesforce AccountPartner """ - accountPartners(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountPartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountPartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountPartnersConnection + accountPartners( + filter: SalesforceAccountPartnerConnectionFilter + sortByCustomField: SalesforceAccountPartnerSortByFieldEnum + sortByField: SalesforceAccountPartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountPartnersConnection """ Collection of Salesforce AccountShare """ - accountShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountSharesConnection + accountShares( + filter: SalesforceAccountShareConnectionFilter + sortByCustomField: SalesforceAccountShareSortByFieldEnum + sortByField: SalesforceAccountShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountSharesConnection """ Collection of Salesforce ActionLinkGroupTemplate """ - actionLinkGroupTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceActionLinkGroupTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceActionLinkGroupTemplateSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceActionLinkGroupTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ActionLinkGroupTemplates to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceActionLinkGroupTemplatesConnection + actionLinkGroupTemplates( + filter: SalesforceActionLinkGroupTemplateConnectionFilter + sortByCustomField: SalesforceActionLinkGroupTemplateSortByFieldEnum + sortByField: SalesforceActionLinkGroupTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceActionLinkGroupTemplatesConnection """ Collection of Salesforce ActionLinkTemplate """ - actionLinkTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceActionLinkTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceActionLinkTemplateSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceActionLinkTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ActionLinkTemplates to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceActionLinkTemplatesConnection + actionLinkTemplates( + filter: SalesforceActionLinkTemplateConnectionFilter + sortByCustomField: SalesforceActionLinkTemplateSortByFieldEnum + sortByField: SalesforceActionLinkTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceActionLinkTemplatesConnection """ Collection of Salesforce AdditionalNumber """ - additionalNumbers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAdditionalNumberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAdditionalNumberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAdditionalNumberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AdditionalNumbers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAdditionalNumbersConnection + additionalNumbers( + filter: SalesforceAdditionalNumberConnectionFilter + sortByCustomField: SalesforceAdditionalNumberSortByFieldEnum + sortByField: SalesforceAdditionalNumberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAdditionalNumbersConnection """ Collection of Salesforce Announcement """ - announcements(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAnnouncementConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAnnouncementSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAnnouncementSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Announcements to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAnnouncementsConnection + announcements( + filter: SalesforceAnnouncementConnectionFilter + sortByCustomField: SalesforceAnnouncementSortByFieldEnum + sortByField: SalesforceAnnouncementSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAnnouncementsConnection """ Collection of Salesforce ApexClass """ - apexClasses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexClassConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexClassSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexClassSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexClasses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexClasssConnection + apexClasses( + filter: SalesforceApexClassConnectionFilter + sortByCustomField: SalesforceApexClassSortByFieldEnum + sortByField: SalesforceApexClassSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexClasssConnection """ Collection of Salesforce ApexComponent """ - apexComponents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexComponentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexComponentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexComponentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexComponents to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexComponentsConnection + apexComponents( + filter: SalesforceApexComponentConnectionFilter + sortByCustomField: SalesforceApexComponentSortByFieldEnum + sortByField: SalesforceApexComponentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexComponentsConnection """ Collection of Salesforce ApexEmailNotification """ - apexEmailNotifications(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexEmailNotificationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexEmailNotificationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexEmailNotificationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexEmailNotifications to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexEmailNotificationsConnection + apexEmailNotifications( + filter: SalesforceApexEmailNotificationConnectionFilter + sortByCustomField: SalesforceApexEmailNotificationSortByFieldEnum + sortByField: SalesforceApexEmailNotificationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexEmailNotificationsConnection """ Collection of Salesforce ApexLog """ - apexLogs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexLogConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexLogSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexLogSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexLogs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexLogsConnection + apexLogs( + filter: SalesforceApexLogConnectionFilter + sortByCustomField: SalesforceApexLogSortByFieldEnum + sortByField: SalesforceApexLogSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexLogsConnection """ Collection of Salesforce ApexPage """ - apexPages(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexPageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexPageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexPageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexPages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexPagesConnection + apexPages( + filter: SalesforceApexPageConnectionFilter + sortByCustomField: SalesforceApexPageSortByFieldEnum + sortByField: SalesforceApexPageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexPagesConnection """ Collection of Salesforce ApexTestQueueItem """ - apexTestQueueItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestQueueItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestQueueItemsConnection + apexTestQueueItems( + filter: SalesforceApexTestQueueItemConnectionFilter + sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum + sortByField: SalesforceApexTestQueueItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestQueueItemsConnection """ Collection of Salesforce ApexTestResultLimits """ - apexTestResultLimitsPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestResultLimitsConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestResultLimitsSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestResultLimitsSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTestResultLimits to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestResultLimitssConnection + apexTestResultLimitsPlural( + filter: SalesforceApexTestResultLimitsConnectionFilter + sortByCustomField: SalesforceApexTestResultLimitsSortByFieldEnum + sortByField: SalesforceApexTestResultLimitsSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestResultLimitssConnection """ Collection of Salesforce ApexTestRunResult """ - apexTestRunResults(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestRunResultConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestRunResultSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestRunResultSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTestRunResults to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestRunResultsConnection + apexTestRunResults( + filter: SalesforceApexTestRunResultConnectionFilter + sortByCustomField: SalesforceApexTestRunResultSortByFieldEnum + sortByField: SalesforceApexTestRunResultSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestRunResultsConnection """ Collection of Salesforce ApexTestSuite """ - apexTestSuites(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTestSuiteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTestSuiteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTestSuiteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTestSuites to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTestSuitesConnection + apexTestSuites( + filter: SalesforceApexTestSuiteConnectionFilter + sortByCustomField: SalesforceApexTestSuiteSortByFieldEnum + sortByField: SalesforceApexTestSuiteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTestSuitesConnection """ Collection of Salesforce ApexTrigger """ - apexTriggers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceApexTriggerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceApexTriggerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceApexTriggerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ApexTriggers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceApexTriggersConnection + apexTriggers( + filter: SalesforceApexTriggerConnectionFilter + sortByCustomField: SalesforceApexTriggerSortByFieldEnum + sortByField: SalesforceApexTriggerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceApexTriggersConnection """ Collection of Salesforce AppMenuItem """ - appMenuItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAppMenuItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAppMenuItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAppMenuItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AppMenuItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAppMenuItemsConnection + appMenuItems( + filter: SalesforceAppMenuItemConnectionFilter + sortByCustomField: SalesforceAppMenuItemSortByFieldEnum + sortByField: SalesforceAppMenuItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAppMenuItemsConnection """ Collection of Salesforce Asset """ - assets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Assets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetsConnection + assets( + filter: SalesforceAssetConnectionFilter + sortByCustomField: SalesforceAssetSortByFieldEnum + sortByField: SalesforceAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetsConnection """ Collection of Salesforce AssetFeed """ - assetFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetFeedsConnection + assetFeeds( + filter: SalesforceAssetFeedConnectionFilter + sortByCustomField: SalesforceAssetFeedSortByFieldEnum + sortByField: SalesforceAssetFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetFeedsConnection """ Collection of Salesforce AssetHistory """ - assetHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetHistorysConnection + assetHistories( + filter: SalesforceAssetHistoryConnectionFilter + sortByCustomField: SalesforceAssetHistorySortByFieldEnum + sortByField: SalesforceAssetHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetHistorysConnection """ Collection of Salesforce AssetRelationship """ - assetRelationships(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetRelationships to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetRelationshipsConnection + assetRelationships( + filter: SalesforceAssetRelationshipConnectionFilter + sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum + sortByField: SalesforceAssetRelationshipSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetRelationshipsConnection """ Collection of Salesforce AssetRelationshipFeed """ - assetRelationshipFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetRelationshipFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetRelationshipFeedsConnection + assetRelationshipFeeds( + filter: SalesforceAssetRelationshipFeedConnectionFilter + sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum + sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetRelationshipFeedsConnection """ Collection of Salesforce AssetRelationshipHistory """ - assetRelationshipHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetRelationshipHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetRelationshipHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetRelationshipHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetRelationshipHistorysConnection + assetRelationshipHistories( + filter: SalesforceAssetRelationshipHistoryConnectionFilter + sortByCustomField: SalesforceAssetRelationshipHistorySortByFieldEnum + sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetRelationshipHistorysConnection """ Collection of Salesforce AssetShare """ - assetShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssetShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetSharesConnection + assetShares( + filter: SalesforceAssetShareConnectionFilter + sortByCustomField: SalesforceAssetShareSortByFieldEnum + sortByField: SalesforceAssetShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetSharesConnection """ Collection of Salesforce AssignmentRule """ - assignmentRules(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssignmentRuleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssignmentRuleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssignmentRuleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AssignmentRules to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssignmentRulesConnection + assignmentRules( + filter: SalesforceAssignmentRuleConnectionFilter + sortByCustomField: SalesforceAssignmentRuleSortByFieldEnum + sortByField: SalesforceAssignmentRuleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssignmentRulesConnection """ Collection of Salesforce AsyncApexJob """ - asyncApexJobs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAsyncApexJobConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAsyncApexJobSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AsyncApexJobs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAsyncApexJobsConnection + asyncApexJobs( + filter: SalesforceAsyncApexJobConnectionFilter + sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum + sortByField: SalesforceAsyncApexJobSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAsyncApexJobsConnection """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce AuraDefinition """ - auraDefinitions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuraDefinitionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuraDefinitionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuraDefinitionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AuraDefinitions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuraDefinitionsConnection + auraDefinitions( + filter: SalesforceAuraDefinitionConnectionFilter + sortByCustomField: SalesforceAuraDefinitionSortByFieldEnum + sortByField: SalesforceAuraDefinitionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuraDefinitionsConnection """ Collection of Salesforce AuraDefinitionBundle """ - auraDefinitionBundles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuraDefinitionBundleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuraDefinitionBundleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuraDefinitionBundleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AuraDefinitionBundles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuraDefinitionBundlesConnection + auraDefinitionBundles( + filter: SalesforceAuraDefinitionBundleConnectionFilter + sortByCustomField: SalesforceAuraDefinitionBundleSortByFieldEnum + sortByField: SalesforceAuraDefinitionBundleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuraDefinitionBundlesConnection """ Collection of Salesforce AuthConfig """ - authConfigs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthConfigConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthConfigSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthConfigSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AuthConfigs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthConfigsConnection + authConfigs( + filter: SalesforceAuthConfigConnectionFilter + sortByCustomField: SalesforceAuthConfigSortByFieldEnum + sortByField: SalesforceAuthConfigSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthConfigsConnection """ Collection of Salesforce AuthConfigProviders """ - authConfigProvidersPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthConfigProvidersConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthConfigProviderssConnection + authConfigProvidersPlural( + filter: SalesforceAuthConfigProvidersConnectionFilter + sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum + sortByField: SalesforceAuthConfigProvidersSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthConfigProviderssConnection """ Collection of Salesforce AuthProvider """ - authProviders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthProviderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthProviderSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthProviderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AuthProviders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthProvidersConnection + authProviders( + filter: SalesforceAuthProviderConnectionFilter + sortByCustomField: SalesforceAuthProviderSortByFieldEnum + sortByField: SalesforceAuthProviderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthProvidersConnection """ Collection of Salesforce AuthSession """ - authSessions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAuthSessionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAuthSessionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AuthSessions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAuthSessionsConnection + authSessions( + filter: SalesforceAuthSessionConnectionFilter + sortByCustomField: SalesforceAuthSessionSortByFieldEnum + sortByField: SalesforceAuthSessionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAuthSessionsConnection """ Collection of Salesforce BackgroundOperation """ - backgroundOperations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBackgroundOperationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceBackgroundOperationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBackgroundOperationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of BackgroundOperations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceBackgroundOperationsConnection + backgroundOperations( + filter: SalesforceBackgroundOperationConnectionFilter + sortByCustomField: SalesforceBackgroundOperationSortByFieldEnum + sortByField: SalesforceBackgroundOperationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceBackgroundOperationsConnection """ Collection of Salesforce BrandTemplate """ - brandTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBrandTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceBrandTemplateSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBrandTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of BrandTemplates to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceBrandTemplatesConnection + brandTemplates( + filter: SalesforceBrandTemplateConnectionFilter + sortByCustomField: SalesforceBrandTemplateSortByFieldEnum + sortByField: SalesforceBrandTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceBrandTemplatesConnection """ Collection of Salesforce BusinessHours """ - businessHoursPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBusinessHoursConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceBusinessHoursSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBusinessHoursSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of BusinessHours to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceBusinessHourssConnection + businessHoursPlural( + filter: SalesforceBusinessHoursConnectionFilter + sortByCustomField: SalesforceBusinessHoursSortByFieldEnum + sortByField: SalesforceBusinessHoursSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceBusinessHourssConnection """ Collection of Salesforce BusinessProcess """ - businessProcesses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceBusinessProcessConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceBusinessProcessSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceBusinessProcessSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of BusinessProcesses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceBusinessProcesssConnection + businessProcesses( + filter: SalesforceBusinessProcessConnectionFilter + sortByCustomField: SalesforceBusinessProcessSortByFieldEnum + sortByField: SalesforceBusinessProcessSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceBusinessProcesssConnection """ Collection of Salesforce CallCenter """ - callCenters(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCallCenterConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCallCenterSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCallCenterSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CallCenters to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCallCentersConnection + callCenters( + filter: SalesforceCallCenterConnectionFilter + sortByCustomField: SalesforceCallCenterSortByFieldEnum + sortByField: SalesforceCallCenterSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCallCentersConnection """ Collection of Salesforce Campaign """ - campaigns(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Campaigns to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignsConnection + campaigns( + filter: SalesforceCampaignConnectionFilter + sortByCustomField: SalesforceCampaignSortByFieldEnum + sortByField: SalesforceCampaignSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignsConnection """ Collection of Salesforce CampaignFeed """ - campaignFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CampaignFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignFeedsConnection + campaignFeeds( + filter: SalesforceCampaignFeedConnectionFilter + sortByCustomField: SalesforceCampaignFeedSortByFieldEnum + sortByField: SalesforceCampaignFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignFeedsConnection """ Collection of Salesforce CampaignHistory """ - campaignHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CampaignHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignHistorysConnection + campaignHistories( + filter: SalesforceCampaignHistoryConnectionFilter + sortByCustomField: SalesforceCampaignHistorySortByFieldEnum + sortByField: SalesforceCampaignHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignHistorysConnection """ Collection of Salesforce CampaignMember """ - campaignMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignMembersConnection + campaignMembers( + filter: SalesforceCampaignMemberConnectionFilter + sortByCustomField: SalesforceCampaignMemberSortByFieldEnum + sortByField: SalesforceCampaignMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignMembersConnection """ Collection of Salesforce CampaignMemberStatus """ - campaignMemberStatuses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberStatusConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignMemberStatusSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberStatusSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CampaignMemberStatuses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignMemberStatussConnection + campaignMemberStatuses( + filter: SalesforceCampaignMemberStatusConnectionFilter + sortByCustomField: SalesforceCampaignMemberStatusSortByFieldEnum + sortByField: SalesforceCampaignMemberStatusSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignMemberStatussConnection """ Collection of Salesforce CampaignShare """ - campaignShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CampaignShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignSharesConnection + campaignShares( + filter: SalesforceCampaignShareConnectionFilter + sortByCustomField: SalesforceCampaignShareSortByFieldEnum + sortByField: SalesforceCampaignShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignSharesConnection """ Collection of Salesforce Case """ - cases(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Cases to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCasesConnection + cases( + filter: SalesforceCaseConnectionFilter + sortByCustomField: SalesforceCaseSortByFieldEnum + sortByField: SalesforceCaseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCasesConnection """ Collection of Salesforce CaseComment """ - caseComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseCommentsConnection + caseComments( + filter: SalesforceCaseCommentConnectionFilter + sortByCustomField: SalesforceCaseCommentSortByFieldEnum + sortByField: SalesforceCaseCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseCommentsConnection """ Collection of Salesforce CaseContactRole """ - caseContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseContactRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseContactRolesConnection + caseContactRoles( + filter: SalesforceCaseContactRoleConnectionFilter + sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum + sortByField: SalesforceCaseContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseContactRolesConnection """ Collection of Salesforce CaseFeed """ - caseFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseFeedsConnection + caseFeeds( + filter: SalesforceCaseFeedConnectionFilter + sortByCustomField: SalesforceCaseFeedSortByFieldEnum + sortByField: SalesforceCaseFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseFeedsConnection """ Collection of Salesforce CaseHistory """ - caseHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseHistorysConnection + caseHistories( + filter: SalesforceCaseHistoryConnectionFilter + sortByCustomField: SalesforceCaseHistorySortByFieldEnum + sortByField: SalesforceCaseHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseHistorysConnection """ Collection of Salesforce CaseShare """ - caseShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseSharesConnection + caseShares( + filter: SalesforceCaseShareConnectionFilter + sortByCustomField: SalesforceCaseShareSortByFieldEnum + sortByField: SalesforceCaseShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseSharesConnection """ Collection of Salesforce CaseSolution """ - caseSolutions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseSolutionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSolutionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSolutionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseSolutions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseSolutionsConnection + caseSolutions( + filter: SalesforceCaseSolutionConnectionFilter + sortByCustomField: SalesforceCaseSolutionSortByFieldEnum + sortByField: SalesforceCaseSolutionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseSolutionsConnection """ Collection of Salesforce CaseStatus """ - caseStatuses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseStatusConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseStatusSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseStatusSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseStatuses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseStatussConnection + caseStatuses( + filter: SalesforceCaseStatusConnectionFilter + sortByCustomField: SalesforceCaseStatusSortByFieldEnum + sortByField: SalesforceCaseStatusSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseStatussConnection """ Collection of Salesforce CaseTeamMember """ - caseTeamMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseTeamMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseTeamMembersConnection + caseTeamMembers( + filter: SalesforceCaseTeamMemberConnectionFilter + sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum + sortByField: SalesforceCaseTeamMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseTeamMembersConnection """ Collection of Salesforce CaseTeamRole """ - caseTeamRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseTeamRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseTeamRolesConnection + caseTeamRoles( + filter: SalesforceCaseTeamRoleConnectionFilter + sortByCustomField: SalesforceCaseTeamRoleSortByFieldEnum + sortByField: SalesforceCaseTeamRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseTeamRolesConnection """ Collection of Salesforce CaseTeamTemplate """ - caseTeamTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamTemplateSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseTeamTemplates to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseTeamTemplatesConnection + caseTeamTemplates( + filter: SalesforceCaseTeamTemplateConnectionFilter + sortByCustomField: SalesforceCaseTeamTemplateSortByFieldEnum + sortByField: SalesforceCaseTeamTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseTeamTemplatesConnection """ Collection of Salesforce CaseTeamTemplateMember """ - caseTeamTemplateMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamTemplateMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseTeamTemplateMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseTeamTemplateMembersConnection + caseTeamTemplateMembers( + filter: SalesforceCaseTeamTemplateMemberConnectionFilter + sortByCustomField: SalesforceCaseTeamTemplateMemberSortByFieldEnum + sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseTeamTemplateMembersConnection """ Collection of Salesforce CaseTeamTemplateRecord """ - caseTeamTemplateRecords(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateRecordConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamTemplateRecordSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseTeamTemplateRecords to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseTeamTemplateRecordsConnection + caseTeamTemplateRecords( + filter: SalesforceCaseTeamTemplateRecordConnectionFilter + sortByCustomField: SalesforceCaseTeamTemplateRecordSortByFieldEnum + sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseTeamTemplateRecordsConnection """ Collection of Salesforce CategoryData """ - categoryDatas(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCategoryDataConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCategoryDataSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCategoryDataSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CategoryDatas to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCategoryDatasConnection + categoryDatas( + filter: SalesforceCategoryDataConnectionFilter + sortByCustomField: SalesforceCategoryDataSortByFieldEnum + sortByField: SalesforceCategoryDataSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCategoryDatasConnection """ Collection of Salesforce CategoryNode """ - categoryNodes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCategoryNodeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCategoryNodeSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCategoryNodeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CategoryNodes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCategoryNodesConnection + categoryNodes( + filter: SalesforceCategoryNodeConnectionFilter + sortByCustomField: SalesforceCategoryNodeSortByFieldEnum + sortByField: SalesforceCategoryNodeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCategoryNodesConnection """ Collection of Salesforce ChatterActivity """ - chatterActivities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterActivityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceChatterActivitySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterActivitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ChatterActivities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceChatterActivitysConnection + chatterActivities( + filter: SalesforceChatterActivityConnectionFilter + sortByCustomField: SalesforceChatterActivitySortByFieldEnum + sortByField: SalesforceChatterActivitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceChatterActivitysConnection """ Collection of Salesforce ChatterExtension """ - chatterExtensions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterExtensionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceChatterExtensionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterExtensionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ChatterExtensions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceChatterExtensionsConnection + chatterExtensions( + filter: SalesforceChatterExtensionConnectionFilter + sortByCustomField: SalesforceChatterExtensionSortByFieldEnum + sortByField: SalesforceChatterExtensionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceChatterExtensionsConnection """ Collection of Salesforce ChatterExtensionConfig """ - chatterExtensionConfigs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceChatterExtensionConfigConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceChatterExtensionConfigSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceChatterExtensionConfigSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ChatterExtensionConfigs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceChatterExtensionConfigsConnection + chatterExtensionConfigs( + filter: SalesforceChatterExtensionConfigConnectionFilter + sortByCustomField: SalesforceChatterExtensionConfigSortByFieldEnum + sortByField: SalesforceChatterExtensionConfigSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceChatterExtensionConfigsConnection """ Collection of Salesforce ClientBrowser """ - clientBrowsers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceClientBrowserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceClientBrowserSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceClientBrowserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ClientBrowsers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceClientBrowsersConnection + clientBrowsers( + filter: SalesforceClientBrowserConnectionFilter + sortByCustomField: SalesforceClientBrowserSortByFieldEnum + sortByField: SalesforceClientBrowserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceClientBrowsersConnection """ Collection of Salesforce CollaborationGroup """ - collaborationGroups(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroups to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupsConnection + collaborationGroups( + filter: SalesforceCollaborationGroupConnectionFilter + sortByCustomField: SalesforceCollaborationGroupSortByFieldEnum + sortByField: SalesforceCollaborationGroupSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupsConnection """ Collection of Salesforce CollaborationGroupFeed """ - collaborationGroupFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupFeedsConnection + collaborationGroupFeeds( + filter: SalesforceCollaborationGroupFeedConnectionFilter + sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum + sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupFeedsConnection """ Collection of Salesforce CollaborationGroupMember """ - collaborationGroupMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupMembersConnection + collaborationGroupMembers( + filter: SalesforceCollaborationGroupMemberConnectionFilter + sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum + sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupMembersConnection """ Collection of Salesforce CollaborationGroupMember """ - groupMemberships(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupMembersConnection + groupMemberships( + filter: SalesforceCollaborationGroupMemberConnectionFilter + sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum + sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupMembersConnection """ Collection of Salesforce CollaborationGroupMemberRequest """ - collaborationGroupMemberRequests(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupMemberRequests to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupMemberRequestsConnection + collaborationGroupMemberRequests( + filter: SalesforceCollaborationGroupMemberRequestConnectionFilter + sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum + sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupMemberRequestsConnection """ Collection of Salesforce CollaborationGroupMemberRequest """ - groupMembershipRequests(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupMemberRequests to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupMemberRequestsConnection + groupMembershipRequests( + filter: SalesforceCollaborationGroupMemberRequestConnectionFilter + sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum + sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupMemberRequestsConnection """ Collection of Salesforce CollaborationGroupRecord """ - collaborationGroupRecords(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupRecordsConnection + collaborationGroupRecords( + filter: SalesforceCollaborationGroupRecordConnectionFilter + sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum + sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce CollaborationInvitation """ - collaborationInvitations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationInvitationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationInvitations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationInvitationsConnection + collaborationInvitations( + filter: SalesforceCollaborationInvitationConnectionFilter + sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum + sortByField: SalesforceCollaborationInvitationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationInvitationsConnection """ Collection of Salesforce Community """ - communities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCommunityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCommunitySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCommunitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Communities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCommunitysConnection + communities( + filter: SalesforceCommunityConnectionFilter + sortByCustomField: SalesforceCommunitySortByFieldEnum + sortByField: SalesforceCommunitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCommunitysConnection """ Collection of Salesforce ConnectedApplication """ - connectedApplications(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceConnectedApplicationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceConnectedApplicationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceConnectedApplicationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ConnectedApplications to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceConnectedApplicationsConnection + connectedApplications( + filter: SalesforceConnectedApplicationConnectionFilter + sortByCustomField: SalesforceConnectedApplicationSortByFieldEnum + sortByField: SalesforceConnectedApplicationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceConnectedApplicationsConnection """ Collection of Salesforce Contact """ - contacts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contacts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactsConnection + contacts( + filter: SalesforceContactConnectionFilter + sortByCustomField: SalesforceContactSortByFieldEnum + sortByField: SalesforceContactSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactsConnection """ Collection of Salesforce ContactCleanInfo """ - contactCleanInfos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactCleanInfoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactCleanInfoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContactCleanInfos to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactCleanInfosConnection + contactCleanInfos( + filter: SalesforceContactCleanInfoConnectionFilter + sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum + sortByField: SalesforceContactCleanInfoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactCleanInfosConnection """ Collection of Salesforce ContactCleanInfo """ - contactCleanInfoReviewers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactCleanInfoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactCleanInfoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContactCleanInfos to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactCleanInfosConnection + contactCleanInfoReviewers( + filter: SalesforceContactCleanInfoConnectionFilter + sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum + sortByField: SalesforceContactCleanInfoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactCleanInfosConnection """ Collection of Salesforce ContactFeed """ - contactFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContactFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactFeedsConnection + contactFeeds( + filter: SalesforceContactFeedConnectionFilter + sortByCustomField: SalesforceContactFeedSortByFieldEnum + sortByField: SalesforceContactFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactFeedsConnection """ Collection of Salesforce ContactHistory """ - contactHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContactHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactHistorysConnection + contactHistories( + filter: SalesforceContactHistoryConnectionFilter + sortByCustomField: SalesforceContactHistorySortByFieldEnum + sortByField: SalesforceContactHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactHistorysConnection """ Collection of Salesforce ContactShare """ - contactShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContactShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactSharesConnection + contactShares( + filter: SalesforceContactShareConnectionFilter + sortByCustomField: SalesforceContactShareSortByFieldEnum + sortByField: SalesforceContactShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactSharesConnection """ Collection of Salesforce ContentAsset """ - contentAssets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentAssetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentAssets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentAssetsConnection + contentAssets( + filter: SalesforceContentAssetConnectionFilter + sortByCustomField: SalesforceContentAssetSortByFieldEnum + sortByField: SalesforceContentAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentAssetsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionsConnection + contentDistributions( + filter: SalesforceContentDistributionConnectionFilter + sortByCustomField: SalesforceContentDistributionSortByFieldEnum + sortByField: SalesforceContentDistributionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDistributionView """ - contentDistributionViews(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionViewConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionViewSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDistributionViews to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionViewsConnection + contentDistributionViews( + filter: SalesforceContentDistributionViewConnectionFilter + sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum + sortByField: SalesforceContentDistributionViewSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionViewsConnection """ Collection of Salesforce ContentDocument """ - contentDocuments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentsConnection + contentDocuments( + filter: SalesforceContentDocumentConnectionFilter + sortByCustomField: SalesforceContentDocumentSortByFieldEnum + sortByField: SalesforceContentDocumentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentsConnection """ Collection of Salesforce ContentDocumentFeed """ - contentDocumentFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentFeedsConnection + contentDocumentFeeds( + filter: SalesforceContentDocumentFeedConnectionFilter + sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum + sortByField: SalesforceContentDocumentFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentFeedsConnection """ Collection of Salesforce ContentDocumentHistory """ - contentDocumentHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentHistorysConnection + contentDocumentHistories( + filter: SalesforceContentDocumentHistoryConnectionFilter + sortByCustomField: SalesforceContentDocumentHistorySortByFieldEnum + sortByField: SalesforceContentDocumentHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentHistorysConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentDocumentSubscription """ - contentDocumentSubscriptions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentSubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentSubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentSubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentSubscriptionsConnection + contentDocumentSubscriptions( + filter: SalesforceContentDocumentSubscriptionConnectionFilter + sortByCustomField: SalesforceContentDocumentSubscriptionSortByFieldEnum + sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentSubscriptionsConnection """ Collection of Salesforce ContentFolder """ - contentFolders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentFolders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentFoldersConnection + contentFolders( + filter: SalesforceContentFolderConnectionFilter + sortByCustomField: SalesforceContentFolderSortByFieldEnum + sortByField: SalesforceContentFolderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentFoldersConnection """ Collection of Salesforce ContentFolderItem """ - contentFolderItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentFolderItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentFolderItemsConnection + contentFolderItems( + filter: SalesforceContentFolderItemConnectionFilter + sortByCustomField: SalesforceContentFolderItemSortByFieldEnum + sortByField: SalesforceContentFolderItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentFolderItemsConnection """ Collection of Salesforce ContentFolderMember """ - contentFolderMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentFolderMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentFolderMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentFolderMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentFolderMembersConnection + contentFolderMembers( + filter: SalesforceContentFolderMemberConnectionFilter + sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum + sortByField: SalesforceContentFolderMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentFolderMembersConnection """ Collection of Salesforce ContentNotification """ - contentNotifications(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentNotificationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentNotificationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentNotificationsConnection + contentNotifications( + filter: SalesforceContentNotificationConnectionFilter + sortByCustomField: SalesforceContentNotificationSortByFieldEnum + sortByField: SalesforceContentNotificationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentNotificationsConnection """ Collection of Salesforce ContentTagSubscription """ - contentTagSubscriptions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentTagSubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentTagSubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentTagSubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentTagSubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentTagSubscriptionsConnection + contentTagSubscriptions( + filter: SalesforceContentTagSubscriptionConnectionFilter + sortByCustomField: SalesforceContentTagSubscriptionSortByFieldEnum + sortByField: SalesforceContentTagSubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentTagSubscriptionsConnection """ Collection of Salesforce ContentUserSubscription """ - contentUserSubscriptions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentUserSubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentUserSubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentUserSubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentUserSubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentUserSubscriptionsConnection + contentUserSubscriptions( + filter: SalesforceContentUserSubscriptionConnectionFilter + sortByCustomField: SalesforceContentUserSubscriptionSortByFieldEnum + sortByField: SalesforceContentUserSubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentUserSubscriptionsConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce ContentVersionHistory """ - contentVersionHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersionHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionHistorysConnection + contentVersionHistories( + filter: SalesforceContentVersionHistoryConnectionFilter + sortByCustomField: SalesforceContentVersionHistorySortByFieldEnum + sortByField: SalesforceContentVersionHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionHistorysConnection """ Collection of Salesforce ContentVersionRating """ - contentVersionRatings(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionRatingConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionRatingSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionRatingSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersionRatings to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionRatingsConnection + contentVersionRatings( + filter: SalesforceContentVersionRatingConnectionFilter + sortByCustomField: SalesforceContentVersionRatingSortByFieldEnum + sortByField: SalesforceContentVersionRatingSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionRatingsConnection """ Collection of Salesforce ContentWorkspace """ - contentWorkspaces(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentWorkspaces to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspacesConnection + contentWorkspaces( + filter: SalesforceContentWorkspaceConnectionFilter + sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum + sortByField: SalesforceContentWorkspaceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspacesConnection """ Collection of Salesforce ContentWorkspaceMember """ - contentWorkspaceMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspaceMembersConnection + contentWorkspaceMembers( + filter: SalesforceContentWorkspaceMemberConnectionFilter + sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum + sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspaceMembersConnection """ Collection of Salesforce ContentWorkspacePermission """ - contentWorkspacePermissions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspacePermissionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspacePermissionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspacePermissionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentWorkspacePermissions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspacePermissionsConnection + contentWorkspacePermissions( + filter: SalesforceContentWorkspacePermissionConnectionFilter + sortByCustomField: SalesforceContentWorkspacePermissionSortByFieldEnum + sortByField: SalesforceContentWorkspacePermissionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspacePermissionsConnection """ Collection of Salesforce ContentWorkspaceSubscription """ - contentWorkspaceSubscriptions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentWorkspaceSubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentWorkspaceSubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentWorkspaceSubscriptionsConnection + contentWorkspaceSubscriptions( + filter: SalesforceContentWorkspaceSubscriptionConnectionFilter + sortByCustomField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum + sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentWorkspaceSubscriptionsConnection """ Collection of Salesforce Contract """ - contracts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contracts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractsConnection + contracts( + filter: SalesforceContractConnectionFilter + sortByCustomField: SalesforceContractSortByFieldEnum + sortByField: SalesforceContractSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractsConnection """ Collection of Salesforce Contract """ - contractsSigned(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contracts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractsConnection + contractsSigned( + filter: SalesforceContractConnectionFilter + sortByCustomField: SalesforceContractSortByFieldEnum + sortByField: SalesforceContractSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractsConnection """ Collection of Salesforce ContractContactRole """ - contractContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractContactRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContractContactRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractContactRolesConnection + contractContactRoles( + filter: SalesforceContractContactRoleConnectionFilter + sortByCustomField: SalesforceContractContactRoleSortByFieldEnum + sortByField: SalesforceContractContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractContactRolesConnection """ Collection of Salesforce ContractFeed """ - contractFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContractFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractFeedsConnection + contractFeeds( + filter: SalesforceContractFeedConnectionFilter + sortByCustomField: SalesforceContractFeedSortByFieldEnum + sortByField: SalesforceContractFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractFeedsConnection """ Collection of Salesforce ContractHistory """ - contractHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContractHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractHistorysConnection + contractHistories( + filter: SalesforceContractHistoryConnectionFilter + sortByCustomField: SalesforceContractHistorySortByFieldEnum + sortByField: SalesforceContractHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractHistorysConnection """ Collection of Salesforce ContractStatus """ - contractStatuses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractStatusConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractStatusSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractStatusSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContractStatuses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractStatussConnection + contractStatuses( + filter: SalesforceContractStatusConnectionFilter + sortByCustomField: SalesforceContractStatusSortByFieldEnum + sortByField: SalesforceContractStatusSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractStatussConnection """ Collection of Salesforce CorsWhitelistEntry """ - corsWhitelistEntries(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCorsWhitelistEntryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCorsWhitelistEntrySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCorsWhitelistEntrySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CorsWhitelistEntries to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCorsWhitelistEntrysConnection + corsWhitelistEntries( + filter: SalesforceCorsWhitelistEntryConnectionFilter + sortByCustomField: SalesforceCorsWhitelistEntrySortByFieldEnum + sortByField: SalesforceCorsWhitelistEntrySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCorsWhitelistEntrysConnection """ Collection of Salesforce CronTrigger """ - cronTriggers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCronTriggerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCronTriggerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCronTriggerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CronTriggers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCronTriggersConnection + cronTriggers( + filter: SalesforceCronTriggerConnectionFilter + sortByCustomField: SalesforceCronTriggerSortByFieldEnum + sortByField: SalesforceCronTriggerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCronTriggersConnection """ Collection of Salesforce CspTrustedSite """ - cspTrustedSites(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCspTrustedSiteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCspTrustedSiteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCspTrustedSiteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CspTrustedSites to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCspTrustedSitesConnection + cspTrustedSites( + filter: SalesforceCspTrustedSiteConnectionFilter + sortByCustomField: SalesforceCspTrustedSiteSortByFieldEnum + sortByField: SalesforceCspTrustedSiteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCspTrustedSitesConnection """ Collection of Salesforce CustomBrand """ - customBrands(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CustomBrands to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomBrandsConnection + customBrands( + filter: SalesforceCustomBrandConnectionFilter + sortByCustomField: SalesforceCustomBrandSortByFieldEnum + sortByField: SalesforceCustomBrandSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomBrandsConnection """ Collection of Salesforce CustomBrandAsset """ - customBrandAssets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomBrandAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomBrandAssetsConnection + customBrandAssets( + filter: SalesforceCustomBrandAssetConnectionFilter + sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum + sortByField: SalesforceCustomBrandAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomBrandAssetsConnection """ Collection of Salesforce CustomPermission """ - customPermissions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomPermissionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomPermissionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomPermissionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CustomPermissions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomPermissionsConnection + customPermissions( + filter: SalesforceCustomPermissionConnectionFilter + sortByCustomField: SalesforceCustomPermissionSortByFieldEnum + sortByField: SalesforceCustomPermissionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomPermissionsConnection """ Collection of Salesforce CustomPermissionDependency """ - customPermissionDependencies(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCustomPermissionDependencyConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CustomPermissionDependencies to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCustomPermissionDependencysConnection + customPermissionDependencies( + filter: SalesforceCustomPermissionDependencyConnectionFilter + sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum + sortByField: SalesforceCustomPermissionDependencySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCustomPermissionDependencysConnection """ Collection of Salesforce DandBCompany """ - dandBCompanies(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDandBCompanyConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDandBCompanySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDandBCompanySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DandBCompanies to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDandBCompanysConnection + dandBCompanies( + filter: SalesforceDandBCompanyConnectionFilter + sortByCustomField: SalesforceDandBCompanySortByFieldEnum + sortByField: SalesforceDandBCompanySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDandBCompanysConnection """ Collection of Salesforce Dashboard """ - dashboards(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Dashboards to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDashboardsConnection + dashboards( + filter: SalesforceDashboardConnectionFilter + sortByCustomField: SalesforceDashboardSortByFieldEnum + sortByField: SalesforceDashboardSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDashboardsConnection """ Collection of Salesforce DashboardComponentFeed """ - dashboardComponentFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardComponentFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DashboardComponentFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDashboardComponentFeedsConnection + dashboardComponentFeeds( + filter: SalesforceDashboardComponentFeedConnectionFilter + sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum + sortByField: SalesforceDashboardComponentFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDashboardComponentFeedsConnection """ Collection of Salesforce DashboardFeed """ - dashboardFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDashboardFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDashboardFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDashboardFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DashboardFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDashboardFeedsConnection + dashboardFeeds( + filter: SalesforceDashboardFeedConnectionFilter + sortByCustomField: SalesforceDashboardFeedSortByFieldEnum + sortByField: SalesforceDashboardFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDashboardFeedsConnection """ Collection of Salesforce DataAssessmentFieldMetric """ - dataAssessmentFieldMetrics(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentFieldMetricConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDataAssessmentFieldMetricSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DataAssessmentFieldMetrics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDataAssessmentFieldMetricsConnection + dataAssessmentFieldMetrics( + filter: SalesforceDataAssessmentFieldMetricConnectionFilter + sortByCustomField: SalesforceDataAssessmentFieldMetricSortByFieldEnum + sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDataAssessmentFieldMetricsConnection """ Collection of Salesforce DataAssessmentMetric """ - dataAssessmentMetrics(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentMetricConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDataAssessmentMetricSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentMetricSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DataAssessmentMetrics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDataAssessmentMetricsConnection + dataAssessmentMetrics( + filter: SalesforceDataAssessmentMetricConnectionFilter + sortByCustomField: SalesforceDataAssessmentMetricSortByFieldEnum + sortByField: SalesforceDataAssessmentMetricSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDataAssessmentMetricsConnection """ Collection of Salesforce DataAssessmentValueMetric """ - dataAssessmentValueMetrics(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDataAssessmentValueMetricConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDataAssessmentValueMetricSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DataAssessmentValueMetrics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDataAssessmentValueMetricsConnection + dataAssessmentValueMetrics( + filter: SalesforceDataAssessmentValueMetricConnectionFilter + sortByCustomField: SalesforceDataAssessmentValueMetricSortByFieldEnum + sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDataAssessmentValueMetricsConnection """ Collection of Salesforce DatacloudOwnedEntity """ - datacloudOwnedEntities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDatacloudOwnedEntityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDatacloudOwnedEntitySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DatacloudOwnedEntities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDatacloudOwnedEntitysConnection + datacloudOwnedEntities( + filter: SalesforceDatacloudOwnedEntityConnectionFilter + sortByCustomField: SalesforceDatacloudOwnedEntitySortByFieldEnum + sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDatacloudOwnedEntitysConnection """ Collection of Salesforce DatacloudPurchaseUsage """ - datacloudPurchaseUsages(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDatacloudPurchaseUsageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDatacloudPurchaseUsageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDatacloudPurchaseUsageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DatacloudPurchaseUsages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDatacloudPurchaseUsagesConnection + datacloudPurchaseUsages( + filter: SalesforceDatacloudPurchaseUsageConnectionFilter + sortByCustomField: SalesforceDatacloudPurchaseUsageSortByFieldEnum + sortByField: SalesforceDatacloudPurchaseUsageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDatacloudPurchaseUsagesConnection """ Collection of Salesforce DeclinedEventRelation """ - declinedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDeclinedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDeclinedEventRelationsConnection + declinedEventRelations( + filter: SalesforceDeclinedEventRelationConnectionFilter + sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum + sortByField: SalesforceDeclinedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDeclinedEventRelationsConnection """ Collection of Salesforce Document """ - documents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDocumentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDocumentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDocumentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Documents to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDocumentsConnection + documents( + filter: SalesforceDocumentConnectionFilter + sortByCustomField: SalesforceDocumentSortByFieldEnum + sortByField: SalesforceDocumentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDocumentsConnection """ Collection of Salesforce DocumentAttachmentMap """ - documentAttachmentMaps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDocumentAttachmentMapConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DocumentAttachmentMaps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDocumentAttachmentMapsConnection + documentAttachmentMaps( + filter: SalesforceDocumentAttachmentMapConnectionFilter + sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum + sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDocumentAttachmentMapsConnection """ Collection of Salesforce Domain """ - domains(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDomainConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDomainSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDomainSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Domains to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDomainsConnection + domains( + filter: SalesforceDomainConnectionFilter + sortByCustomField: SalesforceDomainSortByFieldEnum + sortByField: SalesforceDomainSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDomainsConnection """ Collection of Salesforce DomainSite """ - domainSites(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDomainSiteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDomainSiteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDomainSiteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DomainSites to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDomainSitesConnection + domainSites( + filter: SalesforceDomainSiteConnectionFilter + sortByCustomField: SalesforceDomainSiteSortByFieldEnum + sortByField: SalesforceDomainSiteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDomainSitesConnection """ Collection of Salesforce DuplicateRecordItem """ - duplicateRecordItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDuplicateRecordItemsConnection + duplicateRecordItems( + filter: SalesforceDuplicateRecordItemConnectionFilter + sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum + sortByField: SalesforceDuplicateRecordItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDuplicateRecordItemsConnection """ Collection of Salesforce DuplicateRecordSet """ - duplicateRecordSets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordSetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRecordSetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordSetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DuplicateRecordSets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDuplicateRecordSetsConnection + duplicateRecordSets( + filter: SalesforceDuplicateRecordSetConnectionFilter + sortByCustomField: SalesforceDuplicateRecordSetSortByFieldEnum + sortByField: SalesforceDuplicateRecordSetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDuplicateRecordSetsConnection """ Collection of Salesforce DuplicateRule """ - duplicateRules(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRuleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRuleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRuleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DuplicateRules to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDuplicateRulesConnection + duplicateRules( + filter: SalesforceDuplicateRuleConnectionFilter + sortByCustomField: SalesforceDuplicateRuleSortByFieldEnum + sortByField: SalesforceDuplicateRuleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDuplicateRulesConnection """ Collection of Salesforce EmailCapture """ - emailCaptures(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailCaptureConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailCaptureSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailCaptureSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailCaptures to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailCapturesConnection + emailCaptures( + filter: SalesforceEmailCaptureConnectionFilter + sortByCustomField: SalesforceEmailCaptureSortByFieldEnum + sortByField: SalesforceEmailCaptureSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailCapturesConnection """ Collection of Salesforce EmailDomainKey """ - emailDomainKeys(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailDomainKeyConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailDomainKeySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailDomainKeySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailDomainKeys to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailDomainKeysConnection + emailDomainKeys( + filter: SalesforceEmailDomainKeyConnectionFilter + sortByCustomField: SalesforceEmailDomainKeySortByFieldEnum + sortByField: SalesforceEmailDomainKeySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailDomainKeysConnection """ Collection of Salesforce EmailMessage """ - emailMessages(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emailMessages( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: SalesforceEmailMessageSortByFieldEnum + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce EmailMessageRelation """ - emailMessageRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessageRelationsConnection + emailMessageRelations( + filter: SalesforceEmailMessageRelationConnectionFilter + sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum + sortByField: SalesforceEmailMessageRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessageRelationsConnection """ Collection of Salesforce EmailServicesAddress """ - emailServicesAddresses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailServicesAddressConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailServicesAddressSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailServicesAddressSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailServicesAddresses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailServicesAddresssConnection + emailServicesAddresses( + filter: SalesforceEmailServicesAddressConnectionFilter + sortByCustomField: SalesforceEmailServicesAddressSortByFieldEnum + sortByField: SalesforceEmailServicesAddressSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailServicesAddresssConnection """ Collection of Salesforce EmailServicesFunction """ - emailServicesFunctions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailServicesFunctionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailServicesFunctionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailServicesFunctionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailServicesFunctions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailServicesFunctionsConnection + emailServicesFunctions( + filter: SalesforceEmailServicesFunctionConnectionFilter + sortByCustomField: SalesforceEmailServicesFunctionSortByFieldEnum + sortByField: SalesforceEmailServicesFunctionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailServicesFunctionsConnection """ Collection of Salesforce EmailTemplate """ - emailTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailTemplatesConnection + emailTemplates( + filter: SalesforceEmailTemplateConnectionFilter + sortByCustomField: SalesforceEmailTemplateSortByFieldEnum + sortByField: SalesforceEmailTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailTemplatesConnection """ Collection of Salesforce EntitySubscription """ - entitySubscriptions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + entitySubscriptions( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptions( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + events( + filter: SalesforceEventConnectionFilter + sortByCustomField: SalesforceEventSortByFieldEnum + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce EventFeed """ - eventFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EventFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventFeedsConnection + eventFeeds( + filter: SalesforceEventFeedConnectionFilter + sortByCustomField: SalesforceEventFeedSortByFieldEnum + sortByField: SalesforceEventFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventFeedsConnection """ Collection of Salesforce EventLogFile """ - eventLogFiles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventLogFileConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventLogFileSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventLogFileSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EventLogFiles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventLogFilesConnection + eventLogFiles( + filter: SalesforceEventLogFileConnectionFilter + sortByCustomField: SalesforceEventLogFileSortByFieldEnum + sortByField: SalesforceEventLogFileSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventLogFilesConnection """ Collection of Salesforce EventRelation """ - eventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventRelationsConnection + eventRelations( + filter: SalesforceEventRelationConnectionFilter + sortByCustomField: SalesforceEventRelationSortByFieldEnum + sortByField: SalesforceEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventRelationsConnection """ Collection of Salesforce ExternalDataSource """ - externalDataSources(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataSourceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataSourceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceExternalDataSourcesConnection + externalDataSources( + filter: SalesforceExternalDataSourceConnectionFilter + sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum + sortByField: SalesforceExternalDataSourceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceExternalDataSourcesConnection """ Collection of Salesforce ExternalDataUserAuth """ - externalDataUserAuths(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceExternalDataUserAuthConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceExternalDataUserAuthsConnection + externalDataUserAuths( + filter: SalesforceExternalDataUserAuthConnectionFilter + sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum + sortByField: SalesforceExternalDataUserAuthSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceExternalDataUserAuthsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollChoiceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollChoicesConnection + feedPollChoices( + filter: SalesforceFeedPollChoiceConnectionFilter + sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum + sortByField: SalesforceFeedPollChoiceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedPollVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedPollVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedPollVotesConnection + feedPollVotes( + filter: SalesforceFeedPollVoteConnectionFilter + sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum + sortByField: SalesforceFeedPollVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedPollVotesConnection """ Collection of Salesforce FeedRevision """ - feedRevisions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedRevisionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedRevisionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedRevisionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedRevisions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedRevisionsConnection + feedRevisions( + filter: SalesforceFeedRevisionConnectionFilter + sortByCustomField: SalesforceFeedRevisionSortByFieldEnum + sortByField: SalesforceFeedRevisionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedRevisionsConnection """ Collection of Salesforce FileSearchActivity """ - fileSearchActivities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFileSearchActivityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFileSearchActivitySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFileSearchActivitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FileSearchActivities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFileSearchActivitysConnection + fileSearchActivities( + filter: SalesforceFileSearchActivityConnectionFilter + sortByCustomField: SalesforceFileSearchActivitySortByFieldEnum + sortByField: SalesforceFileSearchActivitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFileSearchActivitysConnection """ Collection of Salesforce FlowInterview """ - flowInterviews(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowInterviewConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowInterviewSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowInterviewSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowInterviews to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowInterviewsConnection + flowInterviews( + filter: SalesforceFlowInterviewConnectionFilter + sortByCustomField: SalesforceFlowInterviewSortByFieldEnum + sortByField: SalesforceFlowInterviewSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowInterviewsConnection """ Collection of Salesforce FlowInterviewShare """ - flowInterviewShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowInterviewShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowInterviewShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowInterviewShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowInterviewShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowInterviewSharesConnection + flowInterviewShares( + filter: SalesforceFlowInterviewShareConnectionFilter + sortByCustomField: SalesforceFlowInterviewShareSortByFieldEnum + sortByField: SalesforceFlowInterviewShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowInterviewSharesConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Folder """ - folders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFolderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFolderSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFolderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Folders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFoldersConnection + folders( + filter: SalesforceFolderConnectionFilter + sortByCustomField: SalesforceFolderSortByFieldEnum + sortByField: SalesforceFolderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFoldersConnection """ Collection of Salesforce ForecastShare """ - forecastShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceForecastShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceForecastShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceForecastShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ForecastShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceForecastSharesConnection + forecastShares( + filter: SalesforceForecastShareConnectionFilter + sortByCustomField: SalesforceForecastShareSortByFieldEnum + sortByField: SalesforceForecastShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceForecastSharesConnection """ Collection of Salesforce GrantedByLicense """ - grantedByLicenses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGrantedByLicenseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of GrantedByLicenses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceGrantedByLicensesConnection + grantedByLicenses( + filter: SalesforceGrantedByLicenseConnectionFilter + sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum + sortByField: SalesforceGrantedByLicenseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceGrantedByLicensesConnection """ Collection of Salesforce Group """ - groups(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGroupConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGroupSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGroupSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Groups to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceGroupsConnection + groups( + filter: SalesforceGroupConnectionFilter + sortByCustomField: SalesforceGroupSortByFieldEnum + sortByField: SalesforceGroupSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceGroupsConnection """ Collection of Salesforce GroupMember """ - groupMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceGroupMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceGroupMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceGroupMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of GroupMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceGroupMembersConnection + groupMembers( + filter: SalesforceGroupMemberConnectionFilter + sortByCustomField: SalesforceGroupMemberSortByFieldEnum + sortByField: SalesforceGroupMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceGroupMembersConnection """ Collection of Salesforce Holiday """ - holidays(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceHolidayConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceHolidaySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceHolidaySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Holidays to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceHolidaysConnection + holidays( + filter: SalesforceHolidayConnectionFilter + sortByCustomField: SalesforceHolidaySortByFieldEnum + sortByField: SalesforceHolidaySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceHolidaysConnection """ Collection of Salesforce Idea """ - ideas(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdeaSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Ideas to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceIdeasConnection + ideas( + filter: SalesforceIdeaConnectionFilter + sortByCustomField: SalesforceIdeaSortByFieldEnum + sortByField: SalesforceIdeaSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceIdeasConnection """ Collection of Salesforce IdeaComment """ - ideaComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdeaCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdeaCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdeaCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of IdeaComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceIdeaCommentsConnection + ideaComments( + filter: SalesforceIdeaCommentConnectionFilter + sortByCustomField: SalesforceIdeaCommentSortByFieldEnum + sortByField: SalesforceIdeaCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceIdeaCommentsConnection """ Collection of Salesforce IdpEventLog """ - idpEventLogs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceIdpEventLogConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceIdpEventLogSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceIdpEventLogSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of IdpEventLogs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceIdpEventLogsConnection + idpEventLogs( + filter: SalesforceIdpEventLogConnectionFilter + sortByCustomField: SalesforceIdpEventLogSortByFieldEnum + sortByField: SalesforceIdpEventLogSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceIdpEventLogsConnection """ Collection of Salesforce InstalledMobileApp """ - installedMobileApps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceInstalledMobileAppConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceInstalledMobileAppSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceInstalledMobileAppSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of InstalledMobileApps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceInstalledMobileAppsConnection + installedMobileApps( + filter: SalesforceInstalledMobileAppConnectionFilter + sortByCustomField: SalesforceInstalledMobileAppSortByFieldEnum + sortByField: SalesforceInstalledMobileAppSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceInstalledMobileAppsConnection """ Collection of Salesforce KnowledgeableUser """ - knowledgeableUsers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceKnowledgeableUserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceKnowledgeableUserSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceKnowledgeableUserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of KnowledgeableUsers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceKnowledgeableUsersConnection + knowledgeableUsers( + filter: SalesforceKnowledgeableUserConnectionFilter + sortByCustomField: SalesforceKnowledgeableUserSortByFieldEnum + sortByField: SalesforceKnowledgeableUserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceKnowledgeableUsersConnection """ Collection of Salesforce Lead """ - leads(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Leads to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadsConnection + leads( + filter: SalesforceLeadConnectionFilter + sortByCustomField: SalesforceLeadSortByFieldEnum + sortByField: SalesforceLeadSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadsConnection """ Collection of Salesforce LeadCleanInfo """ - leadCleanInfos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadCleanInfoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LeadCleanInfos to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadCleanInfosConnection + leadCleanInfos( + filter: SalesforceLeadCleanInfoConnectionFilter + sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum + sortByField: SalesforceLeadCleanInfoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadCleanInfosConnection """ Collection of Salesforce LeadCleanInfo """ - leadCleanInfoReviewers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadCleanInfoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LeadCleanInfos to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadCleanInfosConnection + leadCleanInfoReviewers( + filter: SalesforceLeadCleanInfoConnectionFilter + sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum + sortByField: SalesforceLeadCleanInfoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadCleanInfosConnection """ Collection of Salesforce LeadFeed """ - leadFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LeadFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadFeedsConnection + leadFeeds( + filter: SalesforceLeadFeedConnectionFilter + sortByCustomField: SalesforceLeadFeedSortByFieldEnum + sortByField: SalesforceLeadFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadFeedsConnection """ Collection of Salesforce LeadHistory """ - leadHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LeadHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadHistorysConnection + leadHistories( + filter: SalesforceLeadHistoryConnectionFilter + sortByCustomField: SalesforceLeadHistorySortByFieldEnum + sortByField: SalesforceLeadHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadHistorysConnection """ Collection of Salesforce LeadShare """ - leadShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LeadShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadSharesConnection + leadShares( + filter: SalesforceLeadShareConnectionFilter + sortByCustomField: SalesforceLeadShareSortByFieldEnum + sortByField: SalesforceLeadShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadSharesConnection """ Collection of Salesforce LeadStatus """ - leadStatuses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadStatusConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadStatusSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadStatusSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LeadStatuses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadStatussConnection + leadStatuses( + filter: SalesforceLeadStatusConnectionFilter + sortByCustomField: SalesforceLeadStatusSortByFieldEnum + sortByField: SalesforceLeadStatusSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadStatussConnection """ Collection of Salesforce LightningComponentBundle """ - lightningComponentBundles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLightningComponentBundleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLightningComponentBundleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLightningComponentBundleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LightningComponentBundles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLightningComponentBundlesConnection + lightningComponentBundles( + filter: SalesforceLightningComponentBundleConnectionFilter + sortByCustomField: SalesforceLightningComponentBundleSortByFieldEnum + sortByField: SalesforceLightningComponentBundleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLightningComponentBundlesConnection """ Collection of Salesforce LightningComponentResource """ - lightningComponentResources(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLightningComponentResourceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLightningComponentResourceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLightningComponentResourceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LightningComponentResources to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLightningComponentResourcesConnection + lightningComponentResources( + filter: SalesforceLightningComponentResourceConnectionFilter + sortByCustomField: SalesforceLightningComponentResourceSortByFieldEnum + sortByField: SalesforceLightningComponentResourceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLightningComponentResourcesConnection """ Collection of Salesforce ListEmail """ - listEmails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListEmailSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ListEmails to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceListEmailsConnection + listEmails( + filter: SalesforceListEmailConnectionFilter + sortByCustomField: SalesforceListEmailSortByFieldEnum + sortByField: SalesforceListEmailSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceListEmailsConnection """ Collection of Salesforce ListEmailRecipientSource """ - listEmailRecipientSources(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailRecipientSourceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ListEmailRecipientSources to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceListEmailRecipientSourcesConnection + listEmailRecipientSources( + filter: SalesforceListEmailRecipientSourceConnectionFilter + sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum + sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceListEmailRecipientSourcesConnection """ Collection of Salesforce ListEmailShare """ - listEmailShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListEmailShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListEmailShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListEmailShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ListEmailShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceListEmailSharesConnection + listEmailShares( + filter: SalesforceListEmailShareConnectionFilter + sortByCustomField: SalesforceListEmailShareSortByFieldEnum + sortByField: SalesforceListEmailShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceListEmailSharesConnection """ Collection of Salesforce ListView """ - listViews(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListViewConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListViewSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListViewSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ListViews to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceListViewsConnection + listViews( + filter: SalesforceListViewConnectionFilter + sortByCustomField: SalesforceListViewSortByFieldEnum + sortByField: SalesforceListViewSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceListViewsConnection """ Collection of Salesforce ListViewChart """ - listViewCharts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceListViewChartConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceListViewChartSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceListViewChartSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ListViewCharts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceListViewChartsConnection + listViewCharts( + filter: SalesforceListViewChartConnectionFilter + sortByCustomField: SalesforceListViewChartSortByFieldEnum + sortByField: SalesforceListViewChartSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceListViewChartsConnection """ Collection of Salesforce LoginGeo """ - loginGeos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginGeoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLoginGeoSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginGeoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LoginGeos to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLoginGeosConnection + loginGeos( + filter: SalesforceLoginGeoConnectionFilter + sortByCustomField: SalesforceLoginGeoSortByFieldEnum + sortByField: SalesforceLoginGeoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLoginGeosConnection """ Collection of Salesforce LoginHistory """ - loginHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LoginHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLoginHistorysConnection + loginHistories( + filter: SalesforceLoginHistoryConnectionFilter + sortByCustomField: SalesforceLoginHistorySortByFieldEnum + sortByField: SalesforceLoginHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLoginHistorysConnection """ Collection of Salesforce LoginIp """ - loginIps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLoginIpConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLoginIpSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLoginIpSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LoginIps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLoginIpsConnection + loginIps( + filter: SalesforceLoginIpConnectionFilter + sortByCustomField: SalesforceLoginIpSortByFieldEnum + sortByField: SalesforceLoginIpSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLoginIpsConnection """ Collection of Salesforce Macro """ - macros(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMacroSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Macros to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMacrosConnection + macros( + filter: SalesforceMacroConnectionFilter + sortByCustomField: SalesforceMacroSortByFieldEnum + sortByField: SalesforceMacroSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMacrosConnection """ Collection of Salesforce MacroHistory """ - macroHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMacroHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of MacroHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMacroHistorysConnection + macroHistories( + filter: SalesforceMacroHistoryConnectionFilter + sortByCustomField: SalesforceMacroHistorySortByFieldEnum + sortByField: SalesforceMacroHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMacroHistorysConnection """ Collection of Salesforce MacroInstruction """ - macroInstructions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroInstructionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMacroInstructionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroInstructionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of MacroInstructions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMacroInstructionsConnection + macroInstructions( + filter: SalesforceMacroInstructionConnectionFilter + sortByCustomField: SalesforceMacroInstructionSortByFieldEnum + sortByField: SalesforceMacroInstructionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMacroInstructionsConnection """ Collection of Salesforce MacroShare """ - macroShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMacroShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMacroShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMacroShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of MacroShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMacroSharesConnection + macroShares( + filter: SalesforceMacroShareConnectionFilter + sortByCustomField: SalesforceMacroShareSortByFieldEnum + sortByField: SalesforceMacroShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMacroSharesConnection """ Collection of Salesforce MailmergeTemplate """ - mailmergeTemplates(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMailmergeTemplateConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMailmergeTemplateSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMailmergeTemplateSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of MailmergeTemplates to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMailmergeTemplatesConnection + mailmergeTemplates( + filter: SalesforceMailmergeTemplateConnectionFilter + sortByCustomField: SalesforceMailmergeTemplateSortByFieldEnum + sortByField: SalesforceMailmergeTemplateSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMailmergeTemplatesConnection """ Collection of Salesforce MatchingRule """ - matchingRules(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMatchingRuleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMatchingRuleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMatchingRuleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of MatchingRules to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMatchingRulesConnection + matchingRules( + filter: SalesforceMatchingRuleConnectionFilter + sortByCustomField: SalesforceMatchingRuleSortByFieldEnum + sortByField: SalesforceMatchingRuleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMatchingRulesConnection """ Collection of Salesforce MatchingRuleItem """ - matchingRuleItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceMatchingRuleItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceMatchingRuleItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceMatchingRuleItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of MatchingRuleItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceMatchingRuleItemsConnection + matchingRuleItems( + filter: SalesforceMatchingRuleItemConnectionFilter + sortByCustomField: SalesforceMatchingRuleItemSortByFieldEnum + sortByField: SalesforceMatchingRuleItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceMatchingRuleItemsConnection """ Collection of Salesforce NamedCredential """ - namedCredentials(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNamedCredentialConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNamedCredentialSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNamedCredentialSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of NamedCredentials to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceNamedCredentialsConnection + namedCredentials( + filter: SalesforceNamedCredentialConnectionFilter + sortByCustomField: SalesforceNamedCredentialSortByFieldEnum + sortByField: SalesforceNamedCredentialSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceNamedCredentialsConnection """ Collection of Salesforce Note """ - notes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Notes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceNotesConnection + notes( + filter: SalesforceNoteConnectionFilter + sortByCustomField: SalesforceNoteSortByFieldEnum + sortByField: SalesforceNoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceNotesConnection """ Collection of Salesforce ObjectPermissions """ - objectPermissionsPlural(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceObjectPermissionsConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceObjectPermissionsSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceObjectPermissionsSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ObjectPermissions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceObjectPermissionssConnection + objectPermissionsPlural( + filter: SalesforceObjectPermissionsConnectionFilter + sortByCustomField: SalesforceObjectPermissionsSortByFieldEnum + sortByField: SalesforceObjectPermissionsSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceObjectPermissionssConnection """ Collection of Salesforce Opportunity """ - opportunities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunitySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Opportunities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunitysConnection + opportunities( + filter: SalesforceOpportunityConnectionFilter + sortByCustomField: SalesforceOpportunitySortByFieldEnum + sortByField: SalesforceOpportunitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunitysConnection """ Collection of Salesforce OpportunityCompetitor """ - opportunityCompetitors(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityCompetitorConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityCompetitorSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityCompetitorSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityCompetitors to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityCompetitorsConnection + opportunityCompetitors( + filter: SalesforceOpportunityCompetitorConnectionFilter + sortByCustomField: SalesforceOpportunityCompetitorSortByFieldEnum + sortByField: SalesforceOpportunityCompetitorSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityCompetitorsConnection """ Collection of Salesforce OpportunityContactRole """ - opportunityContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityContactRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityContactRolesConnection + opportunityContactRoles( + filter: SalesforceOpportunityContactRoleConnectionFilter + sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum + sortByField: SalesforceOpportunityContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityContactRolesConnection """ Collection of Salesforce OpportunityFeed """ - opportunityFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityFeedsConnection + opportunityFeeds( + filter: SalesforceOpportunityFeedConnectionFilter + sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum + sortByField: SalesforceOpportunityFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityFeedsConnection """ Collection of Salesforce OpportunityFieldHistory """ - opportunityFieldHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityFieldHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityFieldHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityFieldHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityFieldHistorysConnection + opportunityFieldHistories( + filter: SalesforceOpportunityFieldHistoryConnectionFilter + sortByCustomField: SalesforceOpportunityFieldHistorySortByFieldEnum + sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityFieldHistorysConnection """ Collection of Salesforce OpportunityHistory """ - opportunityHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityHistorysConnection + opportunityHistories( + filter: SalesforceOpportunityHistoryConnectionFilter + sortByCustomField: SalesforceOpportunityHistorySortByFieldEnum + sortByField: SalesforceOpportunityHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityHistorysConnection """ Collection of Salesforce OpportunityLineItem """ - opportunityLineItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityLineItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityLineItemsConnection + opportunityLineItems( + filter: SalesforceOpportunityLineItemConnectionFilter + sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum + sortByField: SalesforceOpportunityLineItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityLineItemsConnection """ Collection of Salesforce OpportunityPartner """ - opportunityPartners(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityPartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityPartnersConnection + opportunityPartners( + filter: SalesforceOpportunityPartnerConnectionFilter + sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum + sortByField: SalesforceOpportunityPartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityPartnersConnection """ Collection of Salesforce OpportunityShare """ - opportunityShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunitySharesConnection + opportunityShares( + filter: SalesforceOpportunityShareConnectionFilter + sortByCustomField: SalesforceOpportunityShareSortByFieldEnum + sortByField: SalesforceOpportunityShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunitySharesConnection """ Collection of Salesforce OpportunityStage """ - opportunityStages(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityStageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityStageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityStageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityStages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityStagesConnection + opportunityStages( + filter: SalesforceOpportunityStageConnectionFilter + sortByCustomField: SalesforceOpportunityStageSortByFieldEnum + sortByField: SalesforceOpportunityStageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityStagesConnection """ Collection of Salesforce Order """ - orders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Orders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrdersConnection + orders( + filter: SalesforceOrderConnectionFilter + sortByCustomField: SalesforceOrderSortByFieldEnum + sortByField: SalesforceOrderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrdersConnection """ Collection of Salesforce OrderFeed """ - orderFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderFeedsConnection + orderFeeds( + filter: SalesforceOrderFeedConnectionFilter + sortByCustomField: SalesforceOrderFeedSortByFieldEnum + sortByField: SalesforceOrderFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderFeedsConnection """ Collection of Salesforce OrderHistory """ - orderHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderHistorysConnection + orderHistories( + filter: SalesforceOrderHistoryConnectionFilter + sortByCustomField: SalesforceOrderHistorySortByFieldEnum + sortByField: SalesforceOrderHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderHistorysConnection """ Collection of Salesforce OrderItem """ - orderItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderItemsConnection + orderItems( + filter: SalesforceOrderItemConnectionFilter + sortByCustomField: SalesforceOrderItemSortByFieldEnum + sortByField: SalesforceOrderItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderItemsConnection """ Collection of Salesforce OrderItemFeed """ - orderItemFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderItemFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderItemFeedsConnection + orderItemFeeds( + filter: SalesforceOrderItemFeedConnectionFilter + sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum + sortByField: SalesforceOrderItemFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderItemFeedsConnection """ Collection of Salesforce OrderItemHistory """ - orderItemHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderItemHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderItemHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderItemHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderItemHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderItemHistorysConnection + orderItemHistories( + filter: SalesforceOrderItemHistoryConnectionFilter + sortByCustomField: SalesforceOrderItemHistorySortByFieldEnum + sortByField: SalesforceOrderItemHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderItemHistorysConnection """ Collection of Salesforce OrderShare """ - orderShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrderShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrderSharesConnection + orderShares( + filter: SalesforceOrderShareConnectionFilter + sortByCustomField: SalesforceOrderShareSortByFieldEnum + sortByField: SalesforceOrderShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrderSharesConnection """ Collection of Salesforce OrgDeleteRequest """ - orgDeleteRequests(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrgDeleteRequestConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrgDeleteRequestSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrgDeleteRequestSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrgDeleteRequests to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrgDeleteRequestsConnection + orgDeleteRequests( + filter: SalesforceOrgDeleteRequestConnectionFilter + sortByCustomField: SalesforceOrgDeleteRequestSortByFieldEnum + sortByField: SalesforceOrgDeleteRequestSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrgDeleteRequestsConnection """ Collection of Salesforce OrgDeleteRequestShare """ - orgDeleteRequestShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrgDeleteRequestShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrgDeleteRequestShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrgDeleteRequestShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrgDeleteRequestSharesConnection + orgDeleteRequestShares( + filter: SalesforceOrgDeleteRequestShareConnectionFilter + sortByCustomField: SalesforceOrgDeleteRequestShareSortByFieldEnum + sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrgDeleteRequestSharesConnection """ Collection of Salesforce OrgWideEmailAddress """ - orgWideEmailAddresses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrgWideEmailAddressConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrgWideEmailAddressSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrgWideEmailAddressSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OrgWideEmailAddresses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrgWideEmailAddresssConnection + orgWideEmailAddresses( + filter: SalesforceOrgWideEmailAddressConnectionFilter + sortByCustomField: SalesforceOrgWideEmailAddressSortByFieldEnum + sortByField: SalesforceOrgWideEmailAddressSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrgWideEmailAddresssConnection """ Collection of Salesforce Organization """ - organizations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrganizationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrganizationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrganizationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Organizations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrganizationsConnection + organizations( + filter: SalesforceOrganizationConnectionFilter + sortByCustomField: SalesforceOrganizationSortByFieldEnum + sortByField: SalesforceOrganizationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrganizationsConnection """ Collection of Salesforce Partner """ - partners(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePartnerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Partners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePartnersConnection + partners( + filter: SalesforcePartnerConnectionFilter + sortByCustomField: SalesforcePartnerSortByFieldEnum + sortByField: SalesforcePartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePartnersConnection """ Collection of Salesforce PartnerRole """ - partnerRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePartnerRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PartnerRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePartnerRolesConnection + partnerRoles( + filter: SalesforcePartnerRoleConnectionFilter + sortByCustomField: SalesforcePartnerRoleSortByFieldEnum + sortByField: SalesforcePartnerRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePartnerRolesConnection """ Collection of Salesforce PermissionSet """ - permissionSets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PermissionSets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePermissionSetsConnection + permissionSets( + filter: SalesforcePermissionSetConnectionFilter + sortByCustomField: SalesforcePermissionSetSortByFieldEnum + sortByField: SalesforcePermissionSetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePermissionSetsConnection """ Collection of Salesforce PermissionSetAssignment """ - permissionSetAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PermissionSetAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePermissionSetAssignmentsConnection + permissionSetAssignments( + filter: SalesforcePermissionSetAssignmentConnectionFilter + sortByCustomField: SalesforcePermissionSetAssignmentSortByFieldEnum + sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePermissionSetAssignmentsConnection """ Collection of Salesforce PermissionSetLicense """ - permissionSetLicenses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetLicenseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetLicenseSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetLicenseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PermissionSetLicenses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePermissionSetLicensesConnection + permissionSetLicenses( + filter: SalesforcePermissionSetLicenseConnectionFilter + sortByCustomField: SalesforcePermissionSetLicenseSortByFieldEnum + sortByField: SalesforcePermissionSetLicenseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePermissionSetLicensesConnection """ Collection of Salesforce PermissionSetLicenseAssign """ - permissionSetLicenseAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PermissionSetLicenseAssigns to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePermissionSetLicenseAssignsConnection + permissionSetLicenseAssignments( + filter: SalesforcePermissionSetLicenseAssignConnectionFilter + sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum + sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePermissionSetLicenseAssignsConnection """ Collection of Salesforce PermissionSetLicenseAssign """ - permissionSetLicenseAssigns(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PermissionSetLicenseAssigns to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePermissionSetLicenseAssignsConnection + permissionSetLicenseAssigns( + filter: SalesforcePermissionSetLicenseAssignConnectionFilter + sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum + sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePermissionSetLicenseAssignsConnection """ Collection of Salesforce PlatformCachePartition """ - platformCachePartitions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePlatformCachePartitionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePlatformCachePartitionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePlatformCachePartitionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PlatformCachePartitions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePlatformCachePartitionsConnection + platformCachePartitions( + filter: SalesforcePlatformCachePartitionConnectionFilter + sortByCustomField: SalesforcePlatformCachePartitionSortByFieldEnum + sortByField: SalesforcePlatformCachePartitionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePlatformCachePartitionsConnection """ Collection of Salesforce PlatformCachePartitionType """ - platformCachePartitionTypes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePlatformCachePartitionTypeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePlatformCachePartitionTypeSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PlatformCachePartitionTypes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePlatformCachePartitionTypesConnection + platformCachePartitionTypes( + filter: SalesforcePlatformCachePartitionTypeConnectionFilter + sortByCustomField: SalesforcePlatformCachePartitionTypeSortByFieldEnum + sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePlatformCachePartitionTypesConnection """ Collection of Salesforce Pricebook2 """ - pricebook2s(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebook2ConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePricebook2SortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebook2SortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Pricebook2s to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePricebook2sConnection + pricebook2s( + filter: SalesforcePricebook2ConnectionFilter + sortByCustomField: SalesforcePricebook2SortByFieldEnum + sortByField: SalesforcePricebook2SortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePricebook2sConnection """ Collection of Salesforce Pricebook2History """ - pricebook2Histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebook2HistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePricebook2HistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebook2HistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Pricebook2Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePricebook2HistorysConnection + pricebook2Histories( + filter: SalesforcePricebook2HistoryConnectionFilter + sortByCustomField: SalesforcePricebook2HistorySortByFieldEnum + sortByField: SalesforcePricebook2HistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePricebook2HistorysConnection """ Collection of Salesforce PricebookEntry """ - pricebookEntries(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePricebookEntryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePricebookEntrySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePricebookEntrySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PricebookEntries to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePricebookEntrysConnection + pricebookEntries( + filter: SalesforcePricebookEntryConnectionFilter + sortByCustomField: SalesforcePricebookEntrySortByFieldEnum + sortByField: SalesforcePricebookEntrySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePricebookEntrysConnection """ Collection of Salesforce ProcessDefinition """ - processDefinitions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessDefinitionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessDefinitionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessDefinitionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessDefinitions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessDefinitionsConnection + processDefinitions( + filter: SalesforceProcessDefinitionConnectionFilter + sortByCustomField: SalesforceProcessDefinitionSortByFieldEnum + sortByField: SalesforceProcessDefinitionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessDefinitionsConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce ProcessInstanceNode """ - processInstanceNodes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceNodeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstanceNodes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstanceNodesConnection + processInstanceNodes( + filter: SalesforceProcessInstanceNodeConnectionFilter + sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum + sortByField: SalesforceProcessInstanceNodeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstanceNodesConnection """ Collection of Salesforce ProcessInstanceStep """ - processInstanceSteps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceStepConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstanceSteps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstanceStepsConnection + processInstanceSteps( + filter: SalesforceProcessInstanceStepConnectionFilter + sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum + sortByField: SalesforceProcessInstanceStepSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstanceStepsConnection """ Collection of Salesforce ProcessInstanceWorkitem """ - processInstanceWorkitems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceWorkitemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceWorkitemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstanceWorkitems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstanceWorkitemsConnection + processInstanceWorkitems( + filter: SalesforceProcessInstanceWorkitemConnectionFilter + sortByCustomField: SalesforceProcessInstanceWorkitemSortByFieldEnum + sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstanceWorkitemsConnection """ Collection of Salesforce Product2 """ - product2s(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2ConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProduct2SortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2SortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Product2s to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProduct2sConnection + product2s( + filter: SalesforceProduct2ConnectionFilter + sortByCustomField: SalesforceProduct2SortByFieldEnum + sortByField: SalesforceProduct2SortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProduct2sConnection """ Collection of Salesforce Product2Feed """ - product2Feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2FeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProduct2FeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2FeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Product2Feeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProduct2FeedsConnection + product2Feeds( + filter: SalesforceProduct2FeedConnectionFilter + sortByCustomField: SalesforceProduct2FeedSortByFieldEnum + sortByField: SalesforceProduct2FeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProduct2FeedsConnection """ Collection of Salesforce Product2History """ - product2Histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProduct2HistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProduct2HistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProduct2HistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Product2Histories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProduct2HistorysConnection + product2Histories( + filter: SalesforceProduct2HistoryConnectionFilter + sortByCustomField: SalesforceProduct2HistorySortByFieldEnum + sortByField: SalesforceProduct2HistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProduct2HistorysConnection """ Collection of Salesforce Profile """ - profiles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProfileConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProfileSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProfileSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Profiles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProfilesConnection + profiles( + filter: SalesforceProfileConnectionFilter + sortByCustomField: SalesforceProfileSortByFieldEnum + sortByField: SalesforceProfileSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProfilesConnection """ Collection of Salesforce PushTopic """ - pushTopics(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePushTopicConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePushTopicSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePushTopicSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of PushTopics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePushTopicsConnection + pushTopics( + filter: SalesforcePushTopicConnectionFilter + sortByCustomField: SalesforcePushTopicSortByFieldEnum + sortByField: SalesforcePushTopicSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePushTopicsConnection """ Collection of Salesforce QueueSobject """ - queueSobjects(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQueueSobjectConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceQueueSobjectSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQueueSobjectSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of QueueSobjects to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceQueueSobjectsConnection + queueSobjects( + filter: SalesforceQueueSobjectConnectionFilter + sortByCustomField: SalesforceQueueSobjectSortByFieldEnum + sortByField: SalesforceQueueSobjectSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceQueueSobjectsConnection """ Collection of Salesforce QuickText """ - quickTexts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceQuickTextSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of QuickTexts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceQuickTextsConnection + quickTexts( + filter: SalesforceQuickTextConnectionFilter + sortByCustomField: SalesforceQuickTextSortByFieldEnum + sortByField: SalesforceQuickTextSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceQuickTextsConnection """ Collection of Salesforce QuickTextHistory """ - quickTextHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceQuickTextHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of QuickTextHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceQuickTextHistorysConnection + quickTextHistories( + filter: SalesforceQuickTextHistoryConnectionFilter + sortByCustomField: SalesforceQuickTextHistorySortByFieldEnum + sortByField: SalesforceQuickTextHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceQuickTextHistorysConnection """ Collection of Salesforce QuickTextShare """ - quickTextShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceQuickTextShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceQuickTextShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceQuickTextShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of QuickTextShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceQuickTextSharesConnection + quickTextShares( + filter: SalesforceQuickTextShareConnectionFilter + sortByCustomField: SalesforceQuickTextShareSortByFieldEnum + sortByField: SalesforceQuickTextShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceQuickTextSharesConnection """ Collection of Salesforce RecordType """ - recordTypes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceRecordTypeConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceRecordTypeSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceRecordTypeSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of RecordTypes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceRecordTypesConnection + recordTypes( + filter: SalesforceRecordTypeConnectionFilter + sortByCustomField: SalesforceRecordTypeSortByFieldEnum + sortByField: SalesforceRecordTypeSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceRecordTypesConnection """ Collection of Salesforce Report """ - reports(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceReportSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Reports to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceReportsConnection + reports( + filter: SalesforceReportConnectionFilter + sortByCustomField: SalesforceReportSortByFieldEnum + sortByField: SalesforceReportSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceReportsConnection """ Collection of Salesforce ReportFeed """ - reportFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceReportFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceReportFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceReportFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ReportFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceReportFeedsConnection + reportFeeds( + filter: SalesforceReportFeedConnectionFilter + sortByCustomField: SalesforceReportFeedSortByFieldEnum + sortByField: SalesforceReportFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceReportFeedsConnection """ Collection of Salesforce SamlSsoConfig """ - samlSsoConfigs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSamlSsoConfigConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSamlSsoConfigSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSamlSsoConfigSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SamlSsoConfigs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSamlSsoConfigsConnection + samlSsoConfigs( + filter: SalesforceSamlSsoConfigConnectionFilter + sortByCustomField: SalesforceSamlSsoConfigSortByFieldEnum + sortByField: SalesforceSamlSsoConfigSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSamlSsoConfigsConnection """ Collection of Salesforce Scontrol """ - scontrols(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceScontrolConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceScontrolSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceScontrolSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Scontrols to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceScontrolsConnection + scontrols( + filter: SalesforceScontrolConnectionFilter + sortByCustomField: SalesforceScontrolSortByFieldEnum + sortByField: SalesforceScontrolSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceScontrolsConnection """ Collection of Salesforce SearchActivity """ - searchActivities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSearchActivityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSearchActivitySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSearchActivitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SearchActivities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSearchActivitysConnection + searchActivities( + filter: SalesforceSearchActivityConnectionFilter + sortByCustomField: SalesforceSearchActivitySortByFieldEnum + sortByField: SalesforceSearchActivitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSearchActivitysConnection """ Collection of Salesforce SearchPromotionRule """ - searchPromotionRules(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSearchPromotionRuleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSearchPromotionRuleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSearchPromotionRuleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SearchPromotionRules to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSearchPromotionRulesConnection + searchPromotionRules( + filter: SalesforceSearchPromotionRuleConnectionFilter + sortByCustomField: SalesforceSearchPromotionRuleSortByFieldEnum + sortByField: SalesforceSearchPromotionRuleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSearchPromotionRulesConnection """ Collection of Salesforce SecureAgent """ - secureAgents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecureAgentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SecureAgents to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSecureAgentsConnection + secureAgents( + filter: SalesforceSecureAgentConnectionFilter + sortByCustomField: SalesforceSecureAgentSortByFieldEnum + sortByField: SalesforceSecureAgentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSecureAgentsConnection """ Collection of Salesforce SecureAgentPlugin """ - secureAgentPlugins(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentPluginConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecureAgentPluginSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentPluginSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SecureAgentPlugins to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSecureAgentPluginsConnection + secureAgentPlugins( + filter: SalesforceSecureAgentPluginConnectionFilter + sortByCustomField: SalesforceSecureAgentPluginSortByFieldEnum + sortByField: SalesforceSecureAgentPluginSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSecureAgentPluginsConnection """ Collection of Salesforce SecureAgentPluginProperty """ - secureAgentPluginProperties(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentPluginPropertyConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecureAgentPluginPropertySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SecureAgentPluginProperties to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSecureAgentPluginPropertysConnection + secureAgentPluginProperties( + filter: SalesforceSecureAgentPluginPropertyConnectionFilter + sortByCustomField: SalesforceSecureAgentPluginPropertySortByFieldEnum + sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSecureAgentPluginPropertysConnection """ Collection of Salesforce SecureAgentsCluster """ - secureAgentsClusters(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecureAgentsClusterConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecureAgentsClusterSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecureAgentsClusterSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SecureAgentsClusters to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSecureAgentsClustersConnection + secureAgentsClusters( + filter: SalesforceSecureAgentsClusterConnectionFilter + sortByCustomField: SalesforceSecureAgentsClusterSortByFieldEnum + sortByField: SalesforceSecureAgentsClusterSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSecureAgentsClustersConnection """ Collection of Salesforce SecurityCustomBaseline """ - securityCustomBaselines(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSecurityCustomBaselineConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSecurityCustomBaselineSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSecurityCustomBaselineSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SecurityCustomBaselines to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSecurityCustomBaselinesConnection + securityCustomBaselines( + filter: SalesforceSecurityCustomBaselineConnectionFilter + sortByCustomField: SalesforceSecurityCustomBaselineSortByFieldEnum + sortByField: SalesforceSecurityCustomBaselineSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSecurityCustomBaselinesConnection """ Collection of Salesforce SessionPermSetActivation """ - sessionPermSetActivations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSessionPermSetActivationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SessionPermSetActivations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSessionPermSetActivationsConnection + sessionPermSetActivations( + filter: SalesforceSessionPermSetActivationConnectionFilter + sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum + sortByField: SalesforceSessionPermSetActivationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSessionPermSetActivationsConnection """ Collection of Salesforce SetupAuditTrail """ - setupAuditTrails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSetupAuditTrailConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSetupAuditTrailSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSetupAuditTrailSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SetupAuditTrails to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSetupAuditTrailsConnection + setupAuditTrails( + filter: SalesforceSetupAuditTrailConnectionFilter + sortByCustomField: SalesforceSetupAuditTrailSortByFieldEnum + sortByField: SalesforceSetupAuditTrailSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSetupAuditTrailsConnection """ Collection of Salesforce Site """ - userSites(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSiteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Sites to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSitesConnection + userSites( + filter: SalesforceSiteConnectionFilter + sortByCustomField: SalesforceSiteSortByFieldEnum + sortByField: SalesforceSiteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSitesConnection """ Collection of Salesforce Site """ - sites(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSiteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Sites to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSitesConnection + sites( + filter: SalesforceSiteConnectionFilter + sortByCustomField: SalesforceSiteSortByFieldEnum + sortByField: SalesforceSiteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSitesConnection """ Collection of Salesforce SiteFeed """ - siteFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSiteFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SiteFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSiteFeedsConnection + siteFeeds( + filter: SalesforceSiteFeedConnectionFilter + sortByCustomField: SalesforceSiteFeedSortByFieldEnum + sortByField: SalesforceSiteFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSiteFeedsConnection """ Collection of Salesforce SiteHistory """ - siteHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSiteHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSiteHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSiteHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SiteHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSiteHistorysConnection + siteHistories( + filter: SalesforceSiteHistoryConnectionFilter + sortByCustomField: SalesforceSiteHistorySortByFieldEnum + sortByField: SalesforceSiteHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSiteHistorysConnection """ Collection of Salesforce Solution """ - solutions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSolutionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Solutions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSolutionsConnection + solutions( + filter: SalesforceSolutionConnectionFilter + sortByCustomField: SalesforceSolutionSortByFieldEnum + sortByField: SalesforceSolutionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSolutionsConnection """ Collection of Salesforce SolutionFeed """ - solutionFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSolutionFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SolutionFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSolutionFeedsConnection + solutionFeeds( + filter: SalesforceSolutionFeedConnectionFilter + sortByCustomField: SalesforceSolutionFeedSortByFieldEnum + sortByField: SalesforceSolutionFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSolutionFeedsConnection """ Collection of Salesforce SolutionHistory """ - solutionHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSolutionHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SolutionHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSolutionHistorysConnection + solutionHistories( + filter: SalesforceSolutionHistoryConnectionFilter + sortByCustomField: SalesforceSolutionHistorySortByFieldEnum + sortByField: SalesforceSolutionHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSolutionHistorysConnection """ Collection of Salesforce SolutionStatus """ - solutionStatuses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceSolutionStatusConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceSolutionStatusSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceSolutionStatusSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of SolutionStatuses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceSolutionStatussConnection + solutionStatuses( + filter: SalesforceSolutionStatusConnectionFilter + sortByCustomField: SalesforceSolutionStatusSortByFieldEnum + sortByField: SalesforceSolutionStatusSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceSolutionStatussConnection """ Collection of Salesforce Stamp """ - stamps(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStampConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStampSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStampSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Stamps to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceStampsConnection + stamps( + filter: SalesforceStampConnectionFilter + sortByCustomField: SalesforceStampSortByFieldEnum + sortByField: SalesforceStampSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceStampsConnection """ Collection of Salesforce StampAssignment """ - stampAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStampAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStampAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStampAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of StampAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceStampAssignmentsConnection + stampAssignments( + filter: SalesforceStampAssignmentConnectionFilter + sortByCustomField: SalesforceStampAssignmentSortByFieldEnum + sortByField: SalesforceStampAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceStampAssignmentsConnection """ Collection of Salesforce StaticResource """ - staticResources(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStaticResourceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStaticResourceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStaticResourceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of StaticResources to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceStaticResourcesConnection + staticResources( + filter: SalesforceStaticResourceConnectionFilter + sortByCustomField: SalesforceStaticResourceSortByFieldEnum + sortByField: SalesforceStaticResourceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceStaticResourcesConnection """ Collection of Salesforce StreamingChannel """ - streamingChannels(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStreamingChannelConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStreamingChannelSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStreamingChannelSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of StreamingChannels to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceStreamingChannelsConnection + streamingChannels( + filter: SalesforceStreamingChannelConnectionFilter + sortByCustomField: SalesforceStreamingChannelSortByFieldEnum + sortByField: SalesforceStreamingChannelSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceStreamingChannelsConnection """ Collection of Salesforce StreamingChannelShare """ - streamingChannelShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceStreamingChannelShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceStreamingChannelShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceStreamingChannelShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of StreamingChannelShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceStreamingChannelSharesConnection + streamingChannelShares( + filter: SalesforceStreamingChannelShareConnectionFilter + sortByCustomField: SalesforceStreamingChannelShareSortByFieldEnum + sortByField: SalesforceStreamingChannelShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceStreamingChannelSharesConnection """ Collection of Salesforce Task """ - tasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection + tasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: SalesforceTaskSortByFieldEnum + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection """ Collection of Salesforce TaskFeed """ - taskFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TaskFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTaskFeedsConnection + taskFeeds( + filter: SalesforceTaskFeedConnectionFilter + sortByCustomField: SalesforceTaskFeedSortByFieldEnum + sortByField: SalesforceTaskFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTaskFeedsConnection """ Collection of Salesforce TaskPriority """ - taskPriorities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskPriorityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskPrioritySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskPrioritySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TaskPriorities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTaskPrioritysConnection + taskPriorities( + filter: SalesforceTaskPriorityConnectionFilter + sortByCustomField: SalesforceTaskPrioritySortByFieldEnum + sortByField: SalesforceTaskPrioritySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTaskPrioritysConnection """ Collection of Salesforce TaskStatus """ - taskStatuses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskStatusConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskStatusSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskStatusSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TaskStatuses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTaskStatussConnection + taskStatuses( + filter: SalesforceTaskStatusConnectionFilter + sortByCustomField: SalesforceTaskStatusSortByFieldEnum + sortByField: SalesforceTaskStatusSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTaskStatussConnection """ Collection of Salesforce TenantUsageEntitlement """ - tenantUsageEntitlements(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTenantUsageEntitlementConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTenantUsageEntitlementSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTenantUsageEntitlementSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TenantUsageEntitlements to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTenantUsageEntitlementsConnection + tenantUsageEntitlements( + filter: SalesforceTenantUsageEntitlementConnectionFilter + sortByCustomField: SalesforceTenantUsageEntitlementSortByFieldEnum + sortByField: SalesforceTenantUsageEntitlementSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTenantUsageEntitlementsConnection """ Collection of Salesforce TestSuiteMembership """ - testSuiteMemberships(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTestSuiteMembershipConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TestSuiteMemberships to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTestSuiteMembershipsConnection + testSuiteMemberships( + filter: SalesforceTestSuiteMembershipConnectionFilter + sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum + sortByField: SalesforceTestSuiteMembershipSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTestSuiteMembershipsConnection """ Collection of Salesforce TodayGoal """ - todayGoals(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTodayGoalConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTodayGoalSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTodayGoalSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TodayGoals to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTodayGoalsConnection + todayGoals( + filter: SalesforceTodayGoalConnectionFilter + sortByCustomField: SalesforceTodayGoalSortByFieldEnum + sortByField: SalesforceTodayGoalSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTodayGoalsConnection """ Collection of Salesforce TodayGoalShare """ - todayGoalShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTodayGoalShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTodayGoalShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTodayGoalShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TodayGoalShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTodayGoalSharesConnection + todayGoalShares( + filter: SalesforceTodayGoalShareConnectionFilter + sortByCustomField: SalesforceTodayGoalShareSortByFieldEnum + sortByField: SalesforceTodayGoalShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTodayGoalSharesConnection """ Collection of Salesforce Topic """ - topics(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Topics to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicsConnection + topics( + filter: SalesforceTopicConnectionFilter + sortByCustomField: SalesforceTopicSortByFieldEnum + sortByField: SalesforceTopicSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicsConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection """ Collection of Salesforce TopicFeed """ - topicFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicFeedsConnection + topicFeeds( + filter: SalesforceTopicFeedConnectionFilter + sortByCustomField: SalesforceTopicFeedSortByFieldEnum + sortByField: SalesforceTopicFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicFeedsConnection """ Collection of Salesforce TopicUserEvent """ - topicUserEvents(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicUserEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicUserEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicUserEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicUserEvents to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicUserEventsConnection + topicUserEvents( + filter: SalesforceTopicUserEventConnectionFilter + sortByCustomField: SalesforceTopicUserEventSortByFieldEnum + sortByField: SalesforceTopicUserEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicUserEventsConnection """ Collection of Salesforce TransactionSecurityPolicy """ - transactionSecurityPolicies(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTransactionSecurityPolicyConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTransactionSecurityPolicySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TransactionSecurityPolicies to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTransactionSecurityPolicysConnection + transactionSecurityPolicies( + filter: SalesforceTransactionSecurityPolicyConnectionFilter + sortByCustomField: SalesforceTransactionSecurityPolicySortByFieldEnum + sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTransactionSecurityPolicysConnection """ Collection of Salesforce UndecidedEventRelation """ - undecidedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUndecidedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUndecidedEventRelationsConnection + undecidedEventRelations( + filter: SalesforceUndecidedEventRelationConnectionFilter + sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum + sortByField: SalesforceUndecidedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUndecidedEventRelationsConnection """ Collection of Salesforce User """ - users(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Users to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUsersConnection + users( + filter: SalesforceUserConnectionFilter + sortByCustomField: SalesforceUserSortByFieldEnum + sortByField: SalesforceUserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUsersConnection """ Collection of Salesforce User """ - delegatedUsers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Users to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUsersConnection + delegatedUsers( + filter: SalesforceUserConnectionFilter + sortByCustomField: SalesforceUserSortByFieldEnum + sortByField: SalesforceUserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUsersConnection """ Collection of Salesforce User """ - managedUsers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Users to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUsersConnection + managedUsers( + filter: SalesforceUserConnectionFilter + sortByCustomField: SalesforceUserSortByFieldEnum + sortByField: SalesforceUserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUsersConnection """ Collection of Salesforce UserAppInfo """ - userAppInfos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppInfoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserAppInfoSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppInfoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserAppInfos to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserAppInfosConnection + userAppInfos( + filter: SalesforceUserAppInfoConnectionFilter + sortByCustomField: SalesforceUserAppInfoSortByFieldEnum + sortByField: SalesforceUserAppInfoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserAppInfosConnection """ Collection of Salesforce UserAppMenuCustomization """ - userAppMenuCustomizations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppMenuCustomizationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserAppMenuCustomizationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserAppMenuCustomizations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserAppMenuCustomizationsConnection + userAppMenuCustomizations( + filter: SalesforceUserAppMenuCustomizationConnectionFilter + sortByCustomField: SalesforceUserAppMenuCustomizationSortByFieldEnum + sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserAppMenuCustomizationsConnection """ Collection of Salesforce UserAppMenuCustomizationShare """ - userAppMenuCustomizationShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserAppMenuCustomizationShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserAppMenuCustomizationShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserAppMenuCustomizationSharesConnection + userAppMenuCustomizationShares( + filter: SalesforceUserAppMenuCustomizationShareConnectionFilter + sortByCustomField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum + sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserAppMenuCustomizationSharesConnection """ Collection of Salesforce UserFeed """ - userFeeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserFeedsConnection + userFeeds( + filter: SalesforceUserFeedConnectionFilter + sortByCustomField: SalesforceUserFeedSortByFieldEnum + sortByField: SalesforceUserFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserFeedsConnection """ Collection of Salesforce UserFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserFeedsConnection + feeds( + filter: SalesforceUserFeedConnectionFilter + sortByCustomField: SalesforceUserFeedSortByFieldEnum + sortByField: SalesforceUserFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserFeedsConnection """ Collection of Salesforce UserListView """ - userListViews(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserListViewConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserListViewSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserListViewSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserListViews to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserListViewsConnection + userListViews( + filter: SalesforceUserListViewConnectionFilter + sortByCustomField: SalesforceUserListViewSortByFieldEnum + sortByField: SalesforceUserListViewSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserListViewsConnection """ Collection of Salesforce UserListViewCriterion """ - userListViewCriterions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserListViewCriterionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserListViewCriterionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserListViewCriterionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserListViewCriterions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserListViewCriterionsConnection + userListViewCriterions( + filter: SalesforceUserListViewCriterionConnectionFilter + sortByCustomField: SalesforceUserListViewCriterionSortByFieldEnum + sortByField: SalesforceUserListViewCriterionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserListViewCriterionsConnection """ Collection of Salesforce UserLogin """ - userLogins(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserLoginConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserLoginSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserLoginSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserLogins to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserLoginsConnection + userLogins( + filter: SalesforceUserLoginConnectionFilter + sortByCustomField: SalesforceUserLoginSortByFieldEnum + sortByField: SalesforceUserLoginSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserLoginsConnection """ Collection of Salesforce UserPackageLicense """ - userPackageLicenses(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserPackageLicenseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserPackageLicenseSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserPackageLicenseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserPackageLicenses to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserPackageLicensesConnection + userPackageLicenses( + filter: SalesforceUserPackageLicenseConnectionFilter + sortByCustomField: SalesforceUserPackageLicenseSortByFieldEnum + sortByField: SalesforceUserPackageLicenseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserPackageLicensesConnection """ Collection of Salesforce UserPreference """ - userPreferences(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserPreferenceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserPreferenceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserPreferenceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserPreferences to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserPreferencesConnection + userPreferences( + filter: SalesforceUserPreferenceConnectionFilter + sortByCustomField: SalesforceUserPreferenceSortByFieldEnum + sortByField: SalesforceUserPreferenceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserPreferencesConnection """ Collection of Salesforce UserProvAccount """ - userProvAccounts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvAccountConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvAccountSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvAccountSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvAccounts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvAccountsConnection + userProvAccounts( + filter: SalesforceUserProvAccountConnectionFilter + sortByCustomField: SalesforceUserProvAccountSortByFieldEnum + sortByField: SalesforceUserProvAccountSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvAccountsConnection """ Collection of Salesforce UserProvAccountStaging """ - userProvAccountStagings(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvAccountStagingConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvAccountStagingSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvAccountStagingSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvAccountStagings to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvAccountStagingsConnection + userProvAccountStagings( + filter: SalesforceUserProvAccountStagingConnectionFilter + sortByCustomField: SalesforceUserProvAccountStagingSortByFieldEnum + sortByField: SalesforceUserProvAccountStagingSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvAccountStagingsConnection """ Collection of Salesforce UserProvMockTarget """ - userProvMockTargets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvMockTargetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvMockTargetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvMockTargetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvMockTargets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvMockTargetsConnection + userProvMockTargets( + filter: SalesforceUserProvMockTargetConnectionFilter + sortByCustomField: SalesforceUserProvMockTargetSortByFieldEnum + sortByField: SalesforceUserProvMockTargetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvMockTargetsConnection """ Collection of Salesforce UserProvisioningConfig """ - userProvisioningConfigs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningConfigConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvisioningConfigs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningConfigsConnection + userProvisioningConfigs( + filter: SalesforceUserProvisioningConfigConnectionFilter + sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum + sortByField: SalesforceUserProvisioningConfigSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningConfigsConnection """ Collection of Salesforce UserProvisioningLog """ - userProvisioningLogs(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningLogConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningLogSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningLogSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvisioningLogs to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningLogsConnection + userProvisioningLogs( + filter: SalesforceUserProvisioningLogConnectionFilter + sortByCustomField: SalesforceUserProvisioningLogSortByFieldEnum + sortByField: SalesforceUserProvisioningLogSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningLogsConnection """ Collection of Salesforce UserProvisioningRequest """ - userProvisioningRequests(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningRequestsConnection + userProvisioningRequests( + filter: SalesforceUserProvisioningRequestConnectionFilter + sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum + sortByField: SalesforceUserProvisioningRequestSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningRequestsConnection """ Collection of Salesforce UserProvisioningRequestShare """ - userProvisioningRequestShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserProvisioningRequestShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserProvisioningRequestShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserProvisioningRequestShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserProvisioningRequestSharesConnection + userProvisioningRequestShares( + filter: SalesforceUserProvisioningRequestShareConnectionFilter + sortByCustomField: SalesforceUserProvisioningRequestShareSortByFieldEnum + sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserProvisioningRequestSharesConnection """ Collection of Salesforce UserRole """ - userRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserRolesConnection + userRoles( + filter: SalesforceUserRoleConnectionFilter + sortByCustomField: SalesforceUserRoleSortByFieldEnum + sortByField: SalesforceUserRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserRolesConnection """ Collection of Salesforce UserShare """ - userShares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserSharesConnection + userShares( + filter: SalesforceUserShareConnectionFilter + sortByCustomField: SalesforceUserShareSortByFieldEnum + sortByField: SalesforceUserShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserSharesConnection """ Collection of Salesforce UserShare """ - shares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserSharesConnection + shares( + filter: SalesforceUserShareConnectionFilter + sortByCustomField: SalesforceUserShareSortByFieldEnum + sortByField: SalesforceUserShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserSharesConnection """ Collection of Salesforce VerificationHistory """ - verificationHistories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVerificationHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVerificationHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceVerificationHistorysConnection + verificationHistories( + filter: SalesforceVerificationHistoryConnectionFilter + sortByCustomField: SalesforceVerificationHistorySortByFieldEnum + sortByField: SalesforceVerificationHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceVerificationHistorysConnection """ Collection of Salesforce Vote """ - votes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceVoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceVoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceVoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Votes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceVotesConnection + votes( + filter: SalesforceVoteConnectionFilter + sortByCustomField: SalesforceVoteSortByFieldEnum + sortByField: SalesforceVoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceVotesConnection """ Collection of Salesforce WaveCompatibilityCheckItem """ - waveCompatibilityCheckItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceWaveCompatibilityCheckItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of WaveCompatibilityCheckItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceWaveCompatibilityCheckItemsConnection + waveCompatibilityCheckItems( + filter: SalesforceWaveCompatibilityCheckItemConnectionFilter + sortByCustomField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum + sortByField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceWaveCompatibilityCheckItemsConnection """ Collection of Salesforce WebLink """ - webLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceWebLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceWebLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceWebLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of WebLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceWebLinksConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + webLinks( + filter: SalesforceWebLinkConnectionFilter + sortByCustomField: SalesforceWebLinkSortByFieldEnum + sortByField: SalesforceWebLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceWebLinksConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -241637,617 +231760,423 @@ type SalesforceContact implements OneGraphNode { """ Collection of Salesforce AcceptedEventRelation """ - acceptedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAcceptedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAcceptedEventRelationsConnection + acceptedEventRelations( + filter: SalesforceAcceptedEventRelationConnectionFilter + sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum + sortByField: SalesforceAcceptedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAcceptedEventRelationsConnection """ Collection of Salesforce AccountContactRole """ - accountContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountContactRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountContactRolesConnection + accountContactRoles( + filter: SalesforceAccountContactRoleConnectionFilter + sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum + sortByField: SalesforceAccountContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountContactRolesConnection """ Collection of Salesforce Asset """ - assets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Assets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetsConnection + assets( + filter: SalesforceAssetConnectionFilter + sortByCustomField: SalesforceAssetSortByFieldEnum + sortByField: SalesforceAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetsConnection """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce CampaignMember """ - campaignMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignMembersConnection + campaignMembers( + filter: SalesforceCampaignMemberConnectionFilter + sortByCustomField: SalesforceCampaignMemberSortByFieldEnum + sortByField: SalesforceCampaignMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignMembersConnection """ Collection of Salesforce Case """ - cases(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Cases to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCasesConnection + cases( + filter: SalesforceCaseConnectionFilter + sortByCustomField: SalesforceCaseSortByFieldEnum + sortByField: SalesforceCaseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCasesConnection """ Collection of Salesforce CaseContactRole """ - caseContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseContactRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseContactRolesConnection + caseContactRoles( + filter: SalesforceCaseContactRoleConnectionFilter + sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum + sortByField: SalesforceCaseContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseContactRolesConnection """ Collection of Salesforce CaseTeamMember """ - caseTeamMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseTeamMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseTeamMembersConnection + caseTeamMembers( + filter: SalesforceCaseTeamMemberConnectionFilter + sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum + sortByField: SalesforceCaseTeamMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseTeamMembersConnection """ Collection of Salesforce CaseTeamTemplateMember """ - caseTeamTemplateMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamTemplateMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseTeamTemplateMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseTeamTemplateMembersConnection + caseTeamTemplateMembers( + filter: SalesforceCaseTeamTemplateMemberConnectionFilter + sortByCustomField: SalesforceCaseTeamTemplateMemberSortByFieldEnum + sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseTeamTemplateMembersConnection """ Collection of Salesforce CollaborationGroupRecord """ - recordAssociatedGroups(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupRecordsConnection + recordAssociatedGroups( + filter: SalesforceCollaborationGroupRecordConnectionFilter + sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum + sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce Contact """ - contacts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contacts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactsConnection + contacts( + filter: SalesforceContactConnectionFilter + sortByCustomField: SalesforceContactSortByFieldEnum + sortByField: SalesforceContactSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactsConnection """ Collection of Salesforce ContactCleanInfo """ - contactCleanInfos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactCleanInfoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactCleanInfoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContactCleanInfos to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactCleanInfosConnection + contactCleanInfos( + filter: SalesforceContactCleanInfoConnectionFilter + sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum + sortByField: SalesforceContactCleanInfoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactCleanInfosConnection """ Collection of Salesforce ContactFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContactFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactFeedsConnection + feeds( + filter: SalesforceContactFeedConnectionFilter + sortByCustomField: SalesforceContactFeedSortByFieldEnum + sortByField: SalesforceContactFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactFeedsConnection """ Collection of Salesforce ContactHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContactHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactHistorysConnection + histories( + filter: SalesforceContactHistoryConnectionFilter + sortByCustomField: SalesforceContactHistorySortByFieldEnum + sortByField: SalesforceContactHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactHistorysConnection """ Collection of Salesforce ContactShare """ - shares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContactShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactSharesConnection + shares( + filter: SalesforceContactShareConnectionFilter + sortByCustomField: SalesforceContactShareSortByFieldEnum + sortByField: SalesforceContactShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactSharesConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionsConnection + contentDistributions( + filter: SalesforceContentDistributionConnectionFilter + sortByCustomField: SalesforceContentDistributionSortByFieldEnum + sortByField: SalesforceContentDistributionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce Contract """ - contractsSigned(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contracts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractsConnection + contractsSigned( + filter: SalesforceContractConnectionFilter + sortByCustomField: SalesforceContractSortByFieldEnum + sortByField: SalesforceContractSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractsConnection """ Collection of Salesforce ContractContactRole """ - contractContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractContactRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContractContactRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractContactRolesConnection + contractContactRoles( + filter: SalesforceContractContactRoleConnectionFilter + sortByCustomField: SalesforceContractContactRoleSortByFieldEnum + sortByField: SalesforceContractContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractContactRolesConnection """ Collection of Salesforce DeclinedEventRelation """ - declinedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDeclinedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDeclinedEventRelationsConnection + declinedEventRelations( + filter: SalesforceDeclinedEventRelationConnectionFilter + sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum + sortByField: SalesforceDeclinedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDeclinedEventRelationsConnection """ Collection of Salesforce DuplicateRecordItem """ - duplicateRecordItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDuplicateRecordItemsConnection + duplicateRecordItems( + filter: SalesforceDuplicateRecordItemConnectionFilter + sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum + sortByField: SalesforceDuplicateRecordItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDuplicateRecordItemsConnection """ Collection of Salesforce EmailMessageRelation """ - emailMessageRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessageRelationsConnection + emailMessageRelations( + filter: SalesforceEmailMessageRelationConnectionFilter + sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum + sortByField: SalesforceEmailMessageRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessageRelationsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + events( + filter: SalesforceEventConnectionFilter + sortByCustomField: SalesforceEventSortByFieldEnum + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce EventRelation """ - eventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventRelationsConnection + eventRelations( + filter: SalesforceEventRelationConnectionFilter + sortByCustomField: SalesforceEventRelationSortByFieldEnum + sortByField: SalesforceEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventRelationsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Lead """ - leads(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Leads to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadsConnection + leads( + filter: SalesforceLeadConnectionFilter + sortByCustomField: SalesforceLeadSortByFieldEnum + sortByField: SalesforceLeadSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadsConnection """ Collection of Salesforce Note """ - notes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Notes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceNotesConnection + notes( + filter: SalesforceNoteConnectionFilter + sortByCustomField: SalesforceNoteSortByFieldEnum + sortByField: SalesforceNoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceNotesConnection """ Collection of Salesforce OpportunityContactRole """ - opportunityContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityContactRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityContactRolesConnection + opportunityContactRoles( + filter: SalesforceOpportunityContactRoleConnectionFilter + sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum + sortByField: SalesforceOpportunityContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityContactRolesConnection """ Collection of Salesforce Order """ - orders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Orders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrdersConnection + orders( + filter: SalesforceOrderConnectionFilter + sortByCustomField: SalesforceOrderSortByFieldEnum + sortByField: SalesforceOrderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrdersConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection + tasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: SalesforceTaskSortByFieldEnum + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection """ Collection of Salesforce UndecidedEventRelation """ - undecidedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUndecidedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUndecidedEventRelationsConnection + undecidedEventRelations( + filter: SalesforceUndecidedEventRelationConnectionFilter + sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum + sortByField: SalesforceUndecidedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUndecidedEventRelationsConnection """ Collection of Salesforce User """ - users(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Users to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUsersConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + users( + filter: SalesforceUserConnectionFilter + sortByCustomField: SalesforceUserSortByFieldEnum + sortByField: SalesforceUserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUsersConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -242331,9 +232260,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 } """ @@ -242599,409 +232549,280 @@ type SalesforceLead implements OneGraphNode { """ Collection of Salesforce AcceptedEventRelation """ - acceptedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAcceptedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAcceptedEventRelationsConnection + acceptedEventRelations( + filter: SalesforceAcceptedEventRelationConnectionFilter + sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum + sortByField: SalesforceAcceptedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAcceptedEventRelationsConnection """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce CampaignMember """ - campaignMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCampaignMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCampaignMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCampaignMembersConnection + campaignMembers( + filter: SalesforceCampaignMemberConnectionFilter + sortByCustomField: SalesforceCampaignMemberSortByFieldEnum + sortByField: SalesforceCampaignMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCampaignMembersConnection """ Collection of Salesforce CollaborationGroupRecord """ - recordAssociatedGroups(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupRecordsConnection + recordAssociatedGroups( + filter: SalesforceCollaborationGroupRecordConnectionFilter + sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum + sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionsConnection + contentDistributions( + filter: SalesforceContentDistributionConnectionFilter + sortByCustomField: SalesforceContentDistributionSortByFieldEnum + sortByField: SalesforceContentDistributionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce DeclinedEventRelation """ - declinedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDeclinedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDeclinedEventRelationsConnection + declinedEventRelations( + filter: SalesforceDeclinedEventRelationConnectionFilter + sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum + sortByField: SalesforceDeclinedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDeclinedEventRelationsConnection """ Collection of Salesforce DuplicateRecordItem """ - duplicateRecordItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDuplicateRecordItemsConnection + duplicateRecordItems( + filter: SalesforceDuplicateRecordItemConnectionFilter + sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum + sortByField: SalesforceDuplicateRecordItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDuplicateRecordItemsConnection """ Collection of Salesforce EmailMessageRelation """ - emailMessageRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessageRelationsConnection + emailMessageRelations( + filter: SalesforceEmailMessageRelationConnectionFilter + sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum + sortByField: SalesforceEmailMessageRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessageRelationsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + events( + filter: SalesforceEventConnectionFilter + sortByCustomField: SalesforceEventSortByFieldEnum + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce EventRelation """ - eventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventRelationsConnection + eventRelations( + filter: SalesforceEventRelationConnectionFilter + sortByCustomField: SalesforceEventRelationSortByFieldEnum + sortByField: SalesforceEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventRelationsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce LeadCleanInfo """ - leadCleanInfos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadCleanInfoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LeadCleanInfos to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadCleanInfosConnection + leadCleanInfos( + filter: SalesforceLeadCleanInfoConnectionFilter + sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum + sortByField: SalesforceLeadCleanInfoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadCleanInfosConnection """ Collection of Salesforce LeadFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LeadFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadFeedsConnection + feeds( + filter: SalesforceLeadFeedConnectionFilter + sortByCustomField: SalesforceLeadFeedSortByFieldEnum + sortByField: SalesforceLeadFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadFeedsConnection """ Collection of Salesforce LeadHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LeadHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadHistorysConnection + histories( + filter: SalesforceLeadHistoryConnectionFilter + sortByCustomField: SalesforceLeadHistorySortByFieldEnum + sortByField: SalesforceLeadHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadHistorysConnection """ Collection of Salesforce LeadShare """ - shares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of LeadShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadSharesConnection + shares( + filter: SalesforceLeadShareConnectionFilter + sortByCustomField: SalesforceLeadShareSortByFieldEnum + sortByField: SalesforceLeadShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadSharesConnection """ Collection of Salesforce Note """ - notes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Notes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceNotesConnection + notes( + filter: SalesforceNoteConnectionFilter + sortByCustomField: SalesforceNoteSortByFieldEnum + sortByField: SalesforceNoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceNotesConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection + tasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: SalesforceTaskSortByFieldEnum + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection """ Collection of Salesforce UndecidedEventRelation """ - undecidedEventRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUndecidedEventRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUndecidedEventRelationsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + undecidedEventRelations( + filter: SalesforceUndecidedEventRelationConnectionFilter + sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum + sortByField: SalesforceUndecidedEventRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUndecidedEventRelationsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -243181,17 +233002,13 @@ type IntercomTag { """ Users with this tag. """ - users(""" - Limit results to users that were created in that last number of days - """ createdDaysAgo: Int """ - What field to sort the results by. Defaults to CREATED_AT. - """ sortByField: IntercomUsersSortByField """ - Return the users in ascending or descending order. Defaults to DESC. - """ orderBy: IntercomSortOrderBy """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Number of user to fetch, maximum is 60 - """ first: Int): IntercomUsersConnection + users( + createdDaysAgo: Int + sortByField: IntercomUsersSortByField + orderBy: IntercomSortOrderBy + after: String + first: Int + ): IntercomUsersConnection } """ @@ -243490,25 +233307,18 @@ type IntercomUser implements IntercomAuthor { """ List of events for this user. """ - events(""" - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Number of events to fetch, defaults to 50 - """ first: Int): IntercomEventssConnection + events(after: String, first: Int): IntercomEventssConnection """ Conversations for this user. Conversation are how you can communicate with users in Intercom. """ - conversations(""" - When true, retrieves conversation messages in plain text. Defaults to false. - """ displayAsPlaintext: Boolean """ - Defaults to false. When true, fetches just unread conversations. - """ unread: Boolean """ - What field to sort the results by. Defaults to UPDATED_AT. - """ sortByField: IntercomConversationSortByField """ - Return the conversations in ascending or descending order. Defaults to DESC. - """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection + conversations( + displayAsPlaintext: Boolean + unread: Boolean + sortByField: IntercomConversationSortByField + orderBy: IntercomSortOrderBy + ): IntercomConversationsConnection } """ @@ -243786,617 +233596,423 @@ type SalesforceAccount implements OneGraphNode { """ Collection of Salesforce Account """ - childAccounts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Accounts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountsConnection + childAccounts( + filter: SalesforceAccountConnectionFilter + sortByCustomField: SalesforceAccountSortByFieldEnum + sortByField: SalesforceAccountSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountsConnection """ Collection of Salesforce AccountCleanInfo """ - accountCleanInfos(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountCleanInfoConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountCleanInfos to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountCleanInfosConnection + accountCleanInfos( + filter: SalesforceAccountCleanInfoConnectionFilter + sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum + sortByField: SalesforceAccountCleanInfoSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountCleanInfosConnection """ Collection of Salesforce AccountContactRole """ - accountContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountContactRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountContactRolesConnection + accountContactRoles( + filter: SalesforceAccountContactRoleConnectionFilter + sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum + sortByField: SalesforceAccountContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountContactRolesConnection """ Collection of Salesforce AccountFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountFeedsConnection + feeds( + filter: SalesforceAccountFeedConnectionFilter + sortByCustomField: SalesforceAccountFeedSortByFieldEnum + sortByField: SalesforceAccountFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountFeedsConnection """ Collection of Salesforce AccountHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountHistorysConnection + histories( + filter: SalesforceAccountHistoryConnectionFilter + sortByCustomField: SalesforceAccountHistorySortByFieldEnum + sortByField: SalesforceAccountHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountHistorysConnection """ Collection of Salesforce AccountPartner """ - accountPartnersFrom(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountPartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountPartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountPartnersConnection + accountPartnersFrom( + filter: SalesforceAccountPartnerConnectionFilter + sortByCustomField: SalesforceAccountPartnerSortByFieldEnum + sortByField: SalesforceAccountPartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountPartnersConnection """ Collection of Salesforce AccountPartner """ - accountPartnersTo(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountPartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountPartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountPartnersConnection + accountPartnersTo( + filter: SalesforceAccountPartnerConnectionFilter + sortByCustomField: SalesforceAccountPartnerSortByFieldEnum + sortByField: SalesforceAccountPartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountPartnersConnection """ Collection of Salesforce AccountShare """ - shares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAccountShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAccountShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAccountShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of AccountShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAccountSharesConnection + shares( + filter: SalesforceAccountShareConnectionFilter + sortByCustomField: SalesforceAccountShareSortByFieldEnum + sortByField: SalesforceAccountShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAccountSharesConnection """ Collection of Salesforce Asset """ - assets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Assets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetsConnection + assets( + filter: SalesforceAssetConnectionFilter + sortByCustomField: SalesforceAssetSortByFieldEnum + sortByField: SalesforceAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetsConnection """ Collection of Salesforce Asset """ - providedAssets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Assets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetsConnection + providedAssets( + filter: SalesforceAssetConnectionFilter + sortByCustomField: SalesforceAssetSortByFieldEnum + sortByField: SalesforceAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetsConnection """ Collection of Salesforce Asset """ - servicedAssets(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAssetConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAssetSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAssetSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Assets to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAssetsConnection + servicedAssets( + filter: SalesforceAssetConnectionFilter + sortByCustomField: SalesforceAssetSortByFieldEnum + sortByField: SalesforceAssetSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAssetsConnection """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce Case """ - cases(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Cases to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCasesConnection + cases( + filter: SalesforceCaseConnectionFilter + sortByCustomField: SalesforceCaseSortByFieldEnum + sortByField: SalesforceCaseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCasesConnection """ Collection of Salesforce CollaborationGroupRecord """ - recordAssociatedGroups(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupRecordsConnection + recordAssociatedGroups( + filter: SalesforceCollaborationGroupRecordConnectionFilter + sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum + sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce Contact """ - contacts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContactConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContactSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContactSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contacts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContactsConnection + contacts( + filter: SalesforceContactConnectionFilter + sortByCustomField: SalesforceContactSortByFieldEnum + sortByField: SalesforceContactSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContactsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionsConnection + contentDistributions( + filter: SalesforceContentDistributionConnectionFilter + sortByCustomField: SalesforceContentDistributionSortByFieldEnum + sortByField: SalesforceContentDistributionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce Contract """ - contracts(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContractConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContractSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContractSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Contracts to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContractsConnection + contracts( + filter: SalesforceContractConnectionFilter + sortByCustomField: SalesforceContractSortByFieldEnum + sortByField: SalesforceContractSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContractsConnection """ Collection of Salesforce DuplicateRecordItem """ - duplicateRecordItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceDuplicateRecordItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceDuplicateRecordItemsConnection + duplicateRecordItems( + filter: SalesforceDuplicateRecordItemConnectionFilter + sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum + sortByField: SalesforceDuplicateRecordItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceDuplicateRecordItemsConnection """ Collection of Salesforce EmailMessage """ - emails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emails( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: SalesforceEmailMessageSortByFieldEnum + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + events( + filter: SalesforceEventConnectionFilter + sortByCustomField: SalesforceEventSortByFieldEnum + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Lead """ - leads(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceLeadConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceLeadSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceLeadSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Leads to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceLeadsConnection + leads( + filter: SalesforceLeadConnectionFilter + sortByCustomField: SalesforceLeadSortByFieldEnum + sortByField: SalesforceLeadSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceLeadsConnection """ Collection of Salesforce Note """ - notes(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceNoteConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceNoteSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceNoteSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Notes to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceNotesConnection + notes( + filter: SalesforceNoteConnectionFilter + sortByCustomField: SalesforceNoteSortByFieldEnum + sortByField: SalesforceNoteSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceNotesConnection """ Collection of Salesforce Opportunity """ - opportunities(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunitySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunitySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Opportunities to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunitysConnection + opportunities( + filter: SalesforceOpportunityConnectionFilter + sortByCustomField: SalesforceOpportunitySortByFieldEnum + sortByField: SalesforceOpportunitySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunitysConnection """ Collection of Salesforce OpportunityPartner """ - opportunityPartnersTo(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOpportunityPartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOpportunityPartnersConnection + opportunityPartnersTo( + filter: SalesforceOpportunityPartnerConnectionFilter + sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum + sortByField: SalesforceOpportunityPartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOpportunityPartnersConnection """ Collection of Salesforce Order """ - orders(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceOrderConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceOrderSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceOrderSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Orders to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceOrdersConnection + orders( + filter: SalesforceOrderConnectionFilter + sortByCustomField: SalesforceOrderSortByFieldEnum + sortByField: SalesforceOrderSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceOrdersConnection """ Collection of Salesforce Partner """ - partnersFrom(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePartnerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Partners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePartnersConnection + partnersFrom( + filter: SalesforcePartnerConnectionFilter + sortByCustomField: SalesforcePartnerSortByFieldEnum + sortByField: SalesforcePartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePartnersConnection """ Collection of Salesforce Partner """ - partnersTo(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforcePartnerConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforcePartnerSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforcePartnerSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Partners to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforcePartnersConnection + partnersTo( + filter: SalesforcePartnerConnectionFilter + sortByCustomField: SalesforcePartnerSortByFieldEnum + sortByField: SalesforcePartnerSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforcePartnersConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection + tasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: SalesforceTaskSortByFieldEnum + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection """ Collection of Salesforce User """ - users(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Users to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUsersConnection + users( + filter: SalesforceUserConnectionFilter + sortByCustomField: SalesforceUserSortByFieldEnum + sortByField: SalesforceUserSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUsersConnection """ Collection of Salesforce UserRole """ - userRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceUserRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceUserRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceUserRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of UserRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceUserRolesConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userRoles( + filter: SalesforceUserRoleConnectionFilter + sortByCustomField: SalesforceUserRoleSortByFieldEnum + sortByField: SalesforceUserRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceUserRolesConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -244528,9 +234144,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 +235755,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 { @@ -246617,393 +236233,269 @@ type SalesforceCase implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceAttachmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceAttachmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceAttachmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Attachments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceAttachmentsConnection + attachments( + filter: SalesforceAttachmentConnectionFilter + sortByCustomField: SalesforceAttachmentSortByFieldEnum + sortByField: SalesforceAttachmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceAttachmentsConnection """ Collection of Salesforce Case """ - cases(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Cases to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCasesConnection + cases( + filter: SalesforceCaseConnectionFilter + sortByCustomField: SalesforceCaseSortByFieldEnum + sortByField: SalesforceCaseSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCasesConnection """ Collection of Salesforce CaseComment """ - caseComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseCommentsConnection + caseComments( + filter: SalesforceCaseCommentConnectionFilter + sortByCustomField: SalesforceCaseCommentSortByFieldEnum + sortByField: SalesforceCaseCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseCommentsConnection """ Collection of Salesforce CaseContactRole """ - caseContactRoles(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseContactRoleConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseContactRoleSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseContactRoles to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseContactRolesConnection + caseContactRoles( + filter: SalesforceCaseContactRoleConnectionFilter + sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum + sortByField: SalesforceCaseContactRoleSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseContactRolesConnection """ Collection of Salesforce CaseFeed """ - feeds(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseFeedConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseFeedSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseFeedSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseFeeds to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseFeedsConnection + feeds( + filter: SalesforceCaseFeedConnectionFilter + sortByCustomField: SalesforceCaseFeedSortByFieldEnum + sortByField: SalesforceCaseFeedSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseFeedsConnection """ Collection of Salesforce CaseHistory """ - histories(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseHistoryConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseHistorySortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseHistorySortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseHistories to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseHistorysConnection + histories( + filter: SalesforceCaseHistoryConnectionFilter + sortByCustomField: SalesforceCaseHistorySortByFieldEnum + sortByField: SalesforceCaseHistorySortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseHistorysConnection """ Collection of Salesforce CaseShare """ - shares(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseShareConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseShareSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseShareSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseShares to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseSharesConnection + shares( + filter: SalesforceCaseShareConnectionFilter + sortByCustomField: SalesforceCaseShareSortByFieldEnum + sortByField: SalesforceCaseShareSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseSharesConnection """ Collection of Salesforce CaseSolution """ - caseSolutions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseSolutionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseSolutionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseSolutionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseSolutions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseSolutionsConnection + caseSolutions( + filter: SalesforceCaseSolutionConnectionFilter + sortByCustomField: SalesforceCaseSolutionSortByFieldEnum + sortByField: SalesforceCaseSolutionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseSolutionsConnection """ Collection of Salesforce CaseTeamMember """ - teamMembers(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamMemberConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseTeamMembers to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseTeamMembersConnection + teamMembers( + filter: SalesforceCaseTeamMemberConnectionFilter + sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum + sortByField: SalesforceCaseTeamMemberSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseTeamMembersConnection """ Collection of Salesforce CaseTeamTemplateRecord """ - teamTemplateRecords(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCaseTeamTemplateRecordConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCaseTeamTemplateRecordSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CaseTeamTemplateRecords to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCaseTeamTemplateRecordsConnection + teamTemplateRecords( + filter: SalesforceCaseTeamTemplateRecordConnectionFilter + sortByCustomField: SalesforceCaseTeamTemplateRecordSortByFieldEnum + sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCaseTeamTemplateRecordsConnection """ Collection of Salesforce CollaborationGroupRecord """ - recordAssociatedGroups(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceCollaborationGroupRecordConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceCollaborationGroupRecordsConnection + recordAssociatedGroups( + filter: SalesforceCollaborationGroupRecordConnectionFilter + sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum + sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDistributionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDistributionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDistributionsConnection + contentDistributions( + filter: SalesforceContentDistributionConnectionFilter + sortByCustomField: SalesforceContentDistributionSortByFieldEnum + sortByField: SalesforceContentDistributionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentDocumentLinkConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentDocumentLinksConnection + contentDocumentLinks( + filter: SalesforceContentDocumentLinkConnectionFilter + sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum + sortByField: SalesforceContentDocumentLinkSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceContentVersionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceContentVersionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceContentVersionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceContentVersionsConnection + contentVersions( + filter: SalesforceContentVersionConnectionFilter + sortByCustomField: SalesforceContentVersionSortByFieldEnum + sortByField: SalesforceContentVersionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emailMessages(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emailMessages( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: SalesforceEmailMessageSortByFieldEnum + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce EmailMessage """ - emails(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEmailMessageConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEmailMessageSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEmailMessagesConnection + emails( + filter: SalesforceEmailMessageConnectionFilter + sortByCustomField: SalesforceEmailMessageSortByFieldEnum + sortByField: SalesforceEmailMessageSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEntitySubscriptionConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity( + filter: SalesforceEntitySubscriptionConnectionFilter + sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum + sortByField: SalesforceEntitySubscriptionSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceEventConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceEventSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceEventSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Events to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceEventsConnection + events( + filter: SalesforceEventConnectionFilter + sortByCustomField: SalesforceEventSortByFieldEnum + sortByField: SalesforceEventSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedCommentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedCommentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedComments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedCommentsConnection + feedComments( + filter: SalesforceFeedCommentConnectionFilter + sortByCustomField: SalesforceFeedCommentSortByFieldEnum + sortByField: SalesforceFeedCommentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFeedItemConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFeedItemSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFeedItemSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FeedItems to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFeedItemsConnection + feedItems( + filter: SalesforceFeedItemConnectionFilter + sortByCustomField: SalesforceFeedItemSortByFieldEnum + sortByField: SalesforceFeedItemSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceFlowRecordRelationConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceFlowRecordRelationsConnection + flowRecordRelations( + filter: SalesforceFlowRecordRelationConnectionFilter + sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum + sortByField: SalesforceFlowRecordRelationSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceProcessInstanceConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceProcessInstanceSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceProcessInstancesConnection + processInstances( + filter: SalesforceProcessInstanceConnectionFilter + sortByCustomField: SalesforceProcessInstanceSortByFieldEnum + sortByField: SalesforceProcessInstanceSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTaskConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTaskSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTaskSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of Tasks to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTasksConnection + tasks( + filter: SalesforceTaskConnectionFilter + sortByCustomField: SalesforceTaskSortByFieldEnum + sortByField: SalesforceTaskSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments(""" - A filter to be used in determining which values should be returned by the collection. - """ filter: SalesforceTopicAssignmentConnectionFilter """ - Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. - """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum """ - Field to sort the results by. Defaults to Id. - """ sortByField: SalesforceTopicAssignmentSortByFieldEnum """ - Whether elements should be sorted in ascending or descending order. Default is ascending. - """ orderBy: SalesforceSortOrderBy """ - Returns the elements in the list that come after the specified cursor - """ after: String """ - Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. - """ first: Int): SalesforceTopicAssignmentsConnection - customFields(""" - List of custom fields to return. By default, returns all custom fields. - """ fields: [String!]): JSON! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments( + filter: SalesforceTopicAssignmentConnectionFilter + sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum + sortByField: SalesforceTopicAssignmentSortByFieldEnum + orderBy: SalesforceSortOrderBy + after: String + first: Int + ): SalesforceTopicAssignmentsConnection + customFields(fields: [String!]): JSON! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -247213,9 +236705,7 @@ type GitHubBaseRefForcePushedEvent implements OneGraphNode & GitHubNode { Identifies the fully qualified ref name for the 'base_ref_force_pushed' event. """ ref: GitHubRef - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -247229,15 +236719,7 @@ type GitHubPullRequestCommitCommentThread implements OneGraphNode & GitHubReposi """ The comments that exist in this thread. """ - comments(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCommitCommentConnection! + comments(last: Int, first: Int, before: String, after: String): GitHubCommitCommentConnection! """ The commit the comments were made on. """ @@ -247262,9 +236744,7 @@ type GitHubPullRequestCommitCommentThread implements OneGraphNode & GitHubReposi The repository associated with this node. """ repository: GitHubRepository! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -247513,30 +236993,21 @@ type GitHubSecurityAdvisory implements OneGraphNode & GitHubNode { """ Vulnerabilities associated with this Advisory """ - vulnerabilities(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - A list of severities to filter vulnerabilities by. - """ severities: [GitHubSecurityAdvisorySeverity!] """ - A package name to filter vulnerabilities by. - """ package: String """ - An ecosystem to filter vulnerabilities by. - """ ecosystem: GitHubSecurityAdvisoryEcosystem """ - Ordering options for the returned topics. - """ orderBy: GitHubSecurityVulnerabilityOrder): GitHubSecurityVulnerabilityConnection! + vulnerabilities( + last: Int + first: Int + before: String + after: String + severities: [GitHubSecurityAdvisorySeverity!] + package: String + ecosystem: GitHubSecurityAdvisoryEcosystem + orderBy: GitHubSecurityVulnerabilityOrder + ): GitHubSecurityVulnerabilityConnection! """ When the advisory was withdrawn, if it has been withdrawn """ withdrawnAt: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -247550,7 +237021,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 +237042,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 +237061,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 """ @@ -247611,9 +237087,7 @@ type GitHubRepositoryVulnerabilityAlert implements OneGraphNode & GitHubReposito The vulnerable requirements """ vulnerableRequirements: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -247637,15 +237111,7 @@ type GitHubCommitCommentThread implements OneGraphNode & GitHubRepositoryNode & """ The comments that exist in this thread. """ - comments(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCommitCommentConnection! + comments(last: Int, first: Int, before: String, after: String): GitHubCommitCommentConnection! """ The commit the comments were made on. """ @@ -247666,9 +237132,7 @@ type GitHubCommitCommentThread implements OneGraphNode & GitHubRepositoryNode & The repository associated with this node. """ repository: GitHubRepository! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -247707,9 +237171,7 @@ type GitHubDeployedEvent implements OneGraphNode & GitHubNode { The ref associated with the 'deployed' event. """ ref: GitHubRef - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -247889,15 +237351,7 @@ type GitHubDeployment implements OneGraphNode & GitHubNode { """ A list of statuses associated with the deployment. """ - statuses(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubDeploymentStatusConnection + statuses(last: Int, first: Int, before: String, after: String): GitHubDeploymentStatusConnection """ The deployment task. """ @@ -247906,9 +237360,7 @@ type GitHubDeployment implements OneGraphNode & GitHubNode { Identifies the date and time when the object was last updated. """ updatedAt: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -247955,9 +237407,7 @@ type GitHubDeploymentStatus implements OneGraphNode & GitHubNode { Identifies the date and time when the object was last updated. """ updatedAt: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -247988,9 +237438,7 @@ type GitHubDeploymentEnvironmentChangedEvent implements OneGraphNode & GitHubNod PullRequest referenced by event. """ pullRequest: GitHubPullRequest! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248025,9 +237473,7 @@ type GitHubHeadRefDeletedEvent implements OneGraphNode & GitHubNode { PullRequest referenced by event. """ pullRequest: GitHubPullRequest! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248066,9 +237512,7 @@ type GitHubHeadRefForcePushedEvent implements OneGraphNode & GitHubNode { Identifies the fully qualified ref name for the 'head_ref_force_pushed' event. """ ref: GitHubRef - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248095,9 +237539,7 @@ type GitHubHeadRefRestoredEvent implements OneGraphNode & GitHubNode { PullRequest referenced by event. """ pullRequest: GitHubPullRequest! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248144,9 +237586,7 @@ type GitHubMergedEvent implements OneGraphNode & GitHubUniformResourceLocatable The HTTP URL for this merged event. """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248171,17 +237611,7 @@ type GitHubPullRequestReviewThread implements OneGraphNode & GitHubNode { """ A list of pull request comments associated with the thread. """ - comments(""" - Skips the first _n_ elements in the list. - """ skip: Int """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubPullRequestReviewCommentConnection! + comments(skip: Int, last: Int, first: Int, before: String, after: String): GitHubPullRequestReviewCommentConnection! """ The side of the diff on which this thread was placed. """ @@ -248234,9 +237664,7 @@ type GitHubPullRequestReviewThread implements OneGraphNode & GitHubNode { Whether or not the viewer can unresolve this thread """ viewerCanUnresolve: Boolean! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248267,9 +237695,7 @@ type GitHubReviewRequestRemovedEvent implements OneGraphNode & GitHubNode { Identifies the reviewer whose review request was removed. """ requestedReviewer: GitHubRequestedReviewer - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248300,9 +237726,7 @@ type GitHubReviewRequestedEvent implements OneGraphNode & GitHubNode { Identifies the reviewer whose review was requested. """ requestedReviewer: GitHubRequestedReviewer - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248329,9 +237753,7 @@ type GitHubAddedToProjectEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248365,10 +237787,9 @@ 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.") - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + user: GitHubUser + @deprecated(reason: "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.") + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248412,9 +237833,7 @@ type GitHubClosedEvent implements OneGraphNode & GitHubUniformResourceLocatable The HTTP URL for this closed event. """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248441,9 +237860,7 @@ type GitHubCommentDeletedEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248478,9 +237895,7 @@ type GitHubConnectedEvent implements OneGraphNode & GitHubNode { Issue or pull request which was connected. """ subject: GitHubReferencedSubject! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248507,9 +237922,7 @@ type GitHubConvertedNoteToIssueEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248560,9 +237973,7 @@ type GitHubCrossReferencedEvent implements OneGraphNode & GitHubUniformResourceL Checks if the target will be closed when the source is merged. """ willCloseTarget: Boolean! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248593,9 +238004,7 @@ type GitHubDemilestonedEvent implements OneGraphNode & GitHubNode { Object referenced by event. """ subject: GitHubMilestoneItem! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248630,9 +238039,7 @@ type GitHubDisconnectedEvent implements OneGraphNode & GitHubNode { Issue or pull request which was disconnected. """ subject: GitHubReferencedSubject! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248663,9 +238070,7 @@ type GitHubLabeledEvent implements OneGraphNode & GitHubNode { Identifies the `Labelable` associated with the event. """ labelable: GitHubLabelable! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248696,9 +238101,7 @@ type GitHubLockedEvent implements OneGraphNode & GitHubNode { Object that was locked. """ lockable: GitHubLockable! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248721,9 +238124,7 @@ type GitHubMarkedAsDuplicateEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248750,9 +238151,7 @@ type GitHubMentionedEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248788,9 +238187,7 @@ type GitHubMilestonedEvent implements OneGraphNode & GitHubNode { Object referenced by event. """ subject: GitHubMilestoneItem! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248817,9 +238214,7 @@ type GitHubMovedColumnsInProjectEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248846,9 +238241,7 @@ type GitHubPinnedEvent implements OneGraphNode & GitHubNode { Identifies the issue associated with the event. """ issue: GitHubIssue! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248896,9 +238289,7 @@ type GitHubReferencedEvent implements OneGraphNode & GitHubNode { Object referenced by event. """ subject: GitHubReferencedSubject! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248925,9 +238316,7 @@ type GitHubRemovedFromProjectEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248967,9 +238356,7 @@ type GitHubRenamedTitleEvent implements OneGraphNode & GitHubNode { Subject that was renamed. """ subject: GitHubRenamedTitleSubject! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -248996,9 +238383,7 @@ type GitHubReopenedEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249025,9 +238410,7 @@ type GitHubSubscribedEvent implements OneGraphNode & GitHubNode { Object referenced by event. """ subscribable: GitHubSubscribable! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249058,9 +238441,7 @@ type GitHubTransferredEvent implements OneGraphNode & GitHubNode { Identifies the issue associated with the event. """ issue: GitHubIssue! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249079,15 +238460,7 @@ interface GitHubAssignable { """ A list of Users assigned to this object. """ - assignees(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserConnection! + assignees(last: Int, first: Int, before: String, after: String): GitHubUserConnection! } """ @@ -249117,10 +238490,9 @@ 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.") - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + user: GitHubUser + @deprecated(reason: "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.") + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249143,9 +238515,7 @@ type GitHubUnmarkedAsDuplicateEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249172,9 +238542,7 @@ type GitHubUnpinnedEvent implements OneGraphNode & GitHubNode { Identifies the issue associated with the event. """ issue: GitHubIssue! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249193,17 +238561,13 @@ interface GitHubLabelable { """ A list of labels associated with the object. """ - labels(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for labels returned from the connection. - """ orderBy: GitHubLabelOrder): GitHubLabelConnection + labels( + last: Int + first: Int + before: String + after: String + orderBy: GitHubLabelOrder + ): GitHubLabelConnection } """ @@ -249230,9 +238594,7 @@ type GitHubUnlabeledEvent implements OneGraphNode & GitHubNode { Identifies the `Labelable` associated with the event. """ labelable: GitHubLabelable! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249278,9 +238640,7 @@ type GitHubUnlockedEvent implements OneGraphNode & GitHubNode { Object that was unlocked. """ lockable: GitHubLockable! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249387,15 +238747,7 @@ interface GitHubComment { """ A list of edits to this content. """ - userContentEdits(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserContentEditConnection + userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection """ Did the viewer author this comment. """ @@ -249451,30 +238803,22 @@ type GitHubTopic implements OneGraphNode & GitHubStarrable & GitHubNode { A list of related topics, including aliases of this topic, sorted with the most relevant first. Returns up to 10 Topics. """ - relatedTopics(""" - How many topics to return. - """ first: Int): [GitHubTopic!]! + relatedTopics(first: Int): [GitHubTopic!]! """ A list of users who have starred this starrable. """ - stargazers(""" - Order for connection - """ orderBy: GitHubStarOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubStargazerConnection! + stargazers( + orderBy: GitHubStarOrder + last: Int + first: Int + before: String + after: String + ): GitHubStargazerConnection! """ Returns a boolean indicating whether the viewing user has starred this starrable. """ viewerHasStarred: Boolean! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249492,17 +238836,13 @@ interface GitHubStarrable { """ A list of users who have starred this starrable. """ - stargazers(""" - Order for connection - """ orderBy: GitHubStarOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubStargazerConnection! + stargazers( + orderBy: GitHubStarOrder + last: Int + first: Int + before: String + after: String + ): GitHubStargazerConnection! """ Returns a boolean indicating whether the viewing user has starred this starrable. """ @@ -249577,9 +238917,7 @@ interface GitHubRepositoryOwner { """ A URL pointing to the owner's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl(size: Int): String! """ """ @@ -249591,55 +238929,37 @@ interface GitHubRepositoryOwner { """ A list of repositories this user has pinned to their profile """ - pinnedRepositories(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - If non-null, filters repositories according to whether they have been locked - """ 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] """ - 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] """ - Ordering options for repositories returned from the connection - """ 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.") + pinnedRepositories( + last: Int + first: Int + before: String + after: String + isLocked: Boolean + ownerAffiliations: [GitHubRepositoryAffiliation] + affiliations: [GitHubRepositoryAffiliation] + orderBy: GitHubRepositoryOrder + 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 """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - If non-null, filters repositories according to whether they have been locked - """ 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] """ - 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] """ - Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ - If non-null, filters repositories according to privacy - """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! + repositories( + isFork: Boolean + last: Int + first: Int + before: String + after: String + isLocked: Boolean + ownerAffiliations: [GitHubRepositoryAffiliation] + affiliations: [GitHubRepositoryAffiliation] + orderBy: GitHubRepositoryOrder + privacy: GitHubRepositoryPrivacy + ): GitHubRepositoryConnection! """ Find Repository. """ - repository(""" - Name of Repository to find. - """ name: String!): GitHubRepository + repository(name: String!): GitHubRepository """ The HTTP URL for the owner. """ @@ -249731,9 +239051,7 @@ type GitHubLanguage implements OneGraphNode & GitHubNode { The name of the current language. """ name: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -249779,9 +239097,7 @@ type GitHubGistFile { """ UTF8 text data or null if the file is binary """ - text(""" - Optionally truncate the returned file to this length. - """ truncate: Int): String + text(truncate: Int): String } """ @@ -249827,15 +239143,7 @@ type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of comments associated with the gist """ - comments(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubGistCommentConnection! + comments(last: Int, first: Int, before: String, after: String): GitHubGistCommentConnection! """ Identifies the date and time when the object was created. """ @@ -249847,25 +239155,17 @@ type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ The files in this gist. """ - files(""" - The oid of the files to return - """ oid: String """ - The maximum number of files to return. - """ limit: Int): [GitHubGistFile] + files(oid: String, limit: Int): [GitHubGistFile] """ A list of forks associated with the gist """ - forks(""" - Ordering options for gists returned from the connection - """ orderBy: GitHubGistOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubGistConnection! + forks( + orderBy: GitHubGistOrder + last: Int + first: Int + before: String + after: String + ): GitHubGistConnection! """ """ @@ -249897,17 +239197,13 @@ type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of users who have starred this starrable. """ - stargazers(""" - Order for connection - """ orderBy: GitHubStarOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubStargazerConnection! + stargazers( + orderBy: GitHubStarOrder + last: Int + first: Int + before: String + after: String + ): GitHubStargazerConnection! """ Identifies the date and time when the object was last updated. """ @@ -249920,9 +239216,7 @@ type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHu Returns a boolean indicating whether the viewing user has starred this starrable. """ viewerHasStarred: Boolean! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250004,15 +239298,7 @@ type GitHubGistComment implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of edits to this content. """ - userContentEdits(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserContentEditConnection + userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection """ Check if the current viewer can delete this object. """ @@ -250033,9 +239319,7 @@ type GitHubGistComment implements OneGraphNode & GitHubUpdatableComment & GitHub Did the viewer author this comment. """ viewerDidAuthor: Boolean! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250074,27 +239358,19 @@ interface GitHubProjectOwner { """ Find project by number. """ - project(""" - The project number to find. - """ number: Int!): GitHubProject + project(number: Int!): GitHubProject """ A list of projects under the owner. """ - projects(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - A list of states to filter the projects by. - """ states: [GitHubProjectState!] """ - Query to search projects by, currently only searching by name. - """ search: String """ - Ordering options for projects returned from the connection - """ orderBy: GitHubProjectOrder): GitHubProjectConnection! + projects( + last: Int + first: Int + before: String + after: String + states: [GitHubProjectState!] + search: String + orderBy: GitHubProjectOrder + ): GitHubProjectConnection! """ The HTTP path listing owners projects """ @@ -250214,9 +239490,7 @@ type GitHubProjectCard implements OneGraphNode & GitHubNode { The HTTP URL for this card """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250266,17 +239540,13 @@ type GitHubProjectColumn implements OneGraphNode & GitHubNode { """ List of cards in the column """ - cards(""" - A list of archived states to filter the cards by - """ archivedStates: [GitHubProjectCardArchivedState] """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubProjectCardConnection! + cards( + archivedStates: [GitHubProjectCardArchivedState] + last: Int + first: Int + before: String + after: String + ): GitHubProjectCardConnection! """ Identifies the date and time when the object was created. """ @@ -250313,9 +239583,7 @@ type GitHubProjectColumn implements OneGraphNode & GitHubNode { The HTTP URL for this project column """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250381,15 +239649,7 @@ type GitHubProject implements OneGraphNode & GitHubUpdatable & GitHubNode & GitH """ List of columns in the project """ - columns(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubProjectColumnConnection! + columns(last: Int, first: Int, before: String, after: String): GitHubProjectColumnConnection! """ Identifies the date and time when the object was created. """ @@ -250421,17 +239681,13 @@ type GitHubProject implements OneGraphNode & GitHubUpdatable & GitHubNode & GitH """ List of pending cards in this project """ - pendingCards(""" - A list of archived states to filter the cards by - """ archivedStates: [GitHubProjectCardArchivedState] """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubProjectCardConnection! + pendingCards( + archivedStates: [GitHubProjectCardArchivedState] + last: Int + first: Int + before: String + after: String + ): GitHubProjectCardConnection! """ The HTTP path for this project """ @@ -250452,9 +239708,7 @@ type GitHubProject implements OneGraphNode & GitHubUpdatable & GitHubNode & GitH Check if the current viewer can update this object. """ viewerCanUpdate: Boolean! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250525,23 +239779,16 @@ type GitHubMilestone implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of issues associated with the milestone. """ - issues(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filtering options for issues returned from the connection. - """ filterBy: GitHubIssueFilters """ - A list of states to filter the issues by. - """ states: [GitHubIssueState!] """ - A list of label names to filter the pull requests by. - """ labels: [String!] """ - Ordering options for issues returned from the connection. - """ orderBy: GitHubIssueOrder): GitHubIssueConnection! + issues( + last: Int + first: Int + before: String + after: String + filterBy: GitHubIssueFilters + states: [GitHubIssueState!] + labels: [String!] + orderBy: GitHubIssueOrder + ): GitHubIssueConnection! """ Identifies the number of the milestone. """ @@ -250549,25 +239796,17 @@ type GitHubMilestone implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of pull requests associated with the milestone. """ - pullRequests(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for pull requests returned from the connection. - """ orderBy: GitHubIssueOrder """ - The base ref name to filter the pull requests by. - """ baseRefName: String """ - The head ref name to filter the pull requests by. - """ headRefName: String """ - A list of label names to filter the pull requests by. - """ labels: [String!] """ - A list of states to filter the pull requests by. - """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! + pullRequests( + last: Int + first: Int + before: String + after: String + orderBy: GitHubIssueOrder + baseRefName: String + headRefName: String + labels: [String!] + states: [GitHubPullRequestState!] + ): GitHubPullRequestConnection! """ The repository associated with this milestone. """ @@ -250592,9 +239831,7 @@ type GitHubMilestone implements OneGraphNode & GitHubUniformResourceLocatable & The HTTP URL for this milestone """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250738,23 +239975,16 @@ type GitHubLabel implements OneGraphNode & GitHubNode { """ A list of issues associated with this label. """ - issues(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filtering options for issues returned from the connection. - """ filterBy: GitHubIssueFilters """ - A list of states to filter the issues by. - """ states: [GitHubIssueState!] """ - A list of label names to filter the pull requests by. - """ labels: [String!] """ - Ordering options for issues returned from the connection. - """ orderBy: GitHubIssueOrder): GitHubIssueConnection! + issues( + last: Int + first: Int + before: String + after: String + filterBy: GitHubIssueFilters + states: [GitHubIssueState!] + labels: [String!] + orderBy: GitHubIssueOrder + ): GitHubIssueConnection! """ Identifies the label name. """ @@ -250762,25 +239992,17 @@ type GitHubLabel implements OneGraphNode & GitHubNode { """ A list of pull requests associated with this label. """ - pullRequests(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for pull requests returned from the connection. - """ orderBy: GitHubIssueOrder """ - The base ref name to filter the pull requests by. - """ baseRefName: String """ - The head ref name to filter the pull requests by. - """ headRefName: String """ - A list of label names to filter the pull requests by. - """ labels: [String!] """ - A list of states to filter the pull requests by. - """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! + pullRequests( + last: Int + first: Int + before: String + after: String + orderBy: GitHubIssueOrder + baseRefName: String + headRefName: String + labels: [String!] + states: [GitHubPullRequestState!] + ): GitHubPullRequestConnection! """ The repository associated with this label. """ @@ -250797,9 +240019,7 @@ type GitHubLabel implements OneGraphNode & GitHubNode { The HTTP URL for this label. """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -250871,15 +240091,7 @@ type GitHubOrganizationTeamsHovercardContext implements GitHubHovercardContext { """ Teams in this organization the user is a member of that are relevant """ - relevantTeams(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubTeamConnection! + relevantTeams(last: Int, first: Int, before: String, after: String): GitHubTeamConnection! """ The path for the full team list for this user """ @@ -250945,15 +240157,7 @@ type GitHubOrganizationsHovercardContext implements GitHubHovercardContext { """ Organizations this user is a member of that are relevant """ - relevantOrganizations(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + relevantOrganizations(last: Int, first: Int, before: String, after: String): GitHubOrganizationConnection! """ The total number of organizations this user is in """ @@ -251083,15 +240287,7 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ A list of Users assigned to this object. """ - assignees(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserConnection! + assignees(last: Int, first: Int, before: String, after: String): GitHubUserConnection! """ The actor who authored the comment. """ @@ -251123,15 +240319,7 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ A list of comments associated with the Issue. """ - comments(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubIssueCommentConnection! + comments(last: Int, first: Int, before: String, after: String): GitHubIssueCommentConnection! """ Identifies the date and time when the object was created. """ @@ -251151,9 +240339,7 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ The hovercard information for this issue """ - hovercard(""" - Whether or not to include notification contexts - """ includeNotificationContexts: Boolean): GitHubHovercard! + hovercard(includeNotificationContexts: Boolean): GitHubHovercard! """ """ @@ -251165,17 +240351,13 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ A list of labels associated with the object. """ - labels(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for labels returned from the connection. - """ orderBy: GitHubLabelOrder): GitHubLabelConnection + labels( + last: Int + first: Int + before: String + after: String + orderBy: GitHubLabelOrder + ): GitHubLabelConnection """ The moment the editor made the last edit """ @@ -251195,29 +240377,17 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ A list of Users that are participating in the Issue conversation. """ - participants(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserConnection! + participants(last: Int, first: Int, before: String, after: String): GitHubUserConnection! """ List of project cards associated with this issue. """ - projectCards(""" - A list of archived states to filter the cards by - """ archivedStates: [GitHubProjectCardArchivedState] """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubProjectCardConnection! + projectCards( + archivedStates: [GitHubProjectCardArchivedState] + last: Int + first: Int + before: String + after: String + ): GitHubProjectCardConnection! """ Identifies when the comment was published at. """ @@ -251229,19 +240399,14 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ A list of Reactions left on the Issue. """ - reactions(""" - Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ - Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubReactionConnection! + reactions( + orderBy: GitHubReactionOrder + content: GitHubReactionContent + last: Int + first: Int + before: String + after: String + ): GitHubReactionConnection! """ The repository associated with this node. """ @@ -251257,35 +240422,20 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ A list of events, comments, commits, etc. associated with the issue. """ - timeline(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ 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.") + timeline(last: Int, first: Int, before: String, after: String, 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 """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filter timeline items by type. - """ itemTypes: [GitHubIssueTimelineItemsItemType!] """ - Skips the first _n_ elements in the list. - """ skip: Int """ - Filter timeline items by a `since` timestamp. - """ since: String): GitHubIssueTimelineItemsConnection! + timelineItems( + last: Int + first: Int + before: String + after: String + itemTypes: [GitHubIssueTimelineItemsItemType!] + skip: Int + since: String + ): GitHubIssueTimelineItemsConnection! """ Identifies the issue title. """ @@ -251301,15 +240451,7 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ A list of edits to this content. """ - userContentEdits(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserContentEditConnection + userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection """ Can user react to this subject """ @@ -251338,9 +240480,7 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata Linked Salesforce Case """ salesforceCase: SalesforceCase - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251427,19 +240567,14 @@ type GitHubIssueComment implements OneGraphNode & GitHubUpdatableComment & GitHu """ A list of Reactions left on the Issue. """ - reactions(""" - Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ - Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubReactionConnection! + reactions( + orderBy: GitHubReactionOrder + content: GitHubReactionContent + last: Int + first: Int + before: String + after: String + ): GitHubReactionConnection! """ The repository associated with this node. """ @@ -251459,15 +240594,7 @@ type GitHubIssueComment implements OneGraphNode & GitHubUpdatableComment & GitHu """ A list of edits to this content. """ - userContentEdits(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserContentEditConnection + userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection """ Check if the current viewer can delete this object. """ @@ -251504,9 +240631,7 @@ type GitHubIssueComment implements OneGraphNode & GitHubUpdatableComment & GitHu Linked Salesforce FeedItem """ salesforceFeedItem: SalesforceFeedItem - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251639,9 +240764,7 @@ type GitHubReaction implements OneGraphNode & GitHubNode { Identifies the user who created this reaction. """ user: GitHubUser - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251751,15 +240874,7 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & """ A list of review comments for the current pull request review. """ - comments(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubPullRequestReviewCommentConnection! + comments(last: Int, first: Int, before: String, after: String): GitHubPullRequestReviewCommentConnection! """ Identifies the commit associated with this pull request review. """ @@ -251795,15 +240910,7 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & """ A list of teams that this review was made on behalf of. """ - onBehalfOf(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubTeamConnection! + onBehalfOf(last: Int, first: Int, before: String, after: String): GitHubTeamConnection! """ Identifies when the comment was published at. """ @@ -251819,19 +240926,14 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & """ A list of Reactions left on the Issue. """ - reactions(""" - Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ - Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubReactionConnection! + reactions( + orderBy: GitHubReactionOrder + content: GitHubReactionContent + last: Int + first: Int + before: String + after: String + ): GitHubReactionConnection! """ The repository associated with this node. """ @@ -251859,15 +240961,7 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & """ A list of edits to this content. """ - userContentEdits(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserContentEditConnection + userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection """ Check if the current viewer can delete this object. """ @@ -251888,9 +240982,7 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & Did the viewer author this comment. """ viewerDidAuthor: Boolean! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -251921,9 +241013,7 @@ type GitHubPullRequestCommit implements OneGraphNode & GitHubUniformResourceLoca The HTTP URL for this pull request commit """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -252005,9 +241095,7 @@ type GitHubReviewDismissedEvent implements OneGraphNode & GitHubUniformResourceL The HTTP URL for this review dismissed event. """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -252035,9 +241123,7 @@ type GitHubMannequin implements OneGraphNode & GitHubUniformResourceLocatable & """ A URL pointing to the GitHub App's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl(size: Int): String! """ Identifies the date and time when the object was created. """ @@ -252070,9 +241156,7 @@ type GitHubMannequin implements OneGraphNode & GitHubUniformResourceLocatable & The URL to this resource. """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -252441,9 +241525,7 @@ type GitHubOrganizationInvitation implements OneGraphNode & GitHubNode { The user's pending role in the organization (e.g. member, owner). """ role: GitHubOrganizationInvitationRole! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -252607,39 +241689,23 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ A list of teams that are ancestors of this team. """ - ancestors(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubTeamConnection! + ancestors(last: Int, first: Int, before: String, after: String): GitHubTeamConnection! """ A URL pointing to the team's avatar. """ - avatarUrl(""" - The size in pixels of the resulting square image. - """ size: Int): String + avatarUrl(size: Int): String """ List of child teams belonging to this team """ - childTeams(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Whether to list immediate child teams or all descendant child teams. - """ immediateOnly: Boolean """ - User logins to filter by - """ userLogins: [String!] """ - Order for connection - """ orderBy: GitHubTeamOrder): GitHubTeamConnection! + childTeams( + last: Int + first: Int + before: String + after: String + immediateOnly: Boolean + userLogins: [String!] + orderBy: GitHubTeamOrder + ): GitHubTeamConnection! """ The slug corresponding to the organization and team. """ @@ -252655,25 +241721,18 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ Find a team discussion by its number. """ - discussion(""" - The sequence number of the discussion to find. - """ number: Int!): GitHubTeamDiscussion + discussion(number: Int!): GitHubTeamDiscussion """ A list of team discussions. """ - discussions(""" - Order for connection - """ orderBy: GitHubTeamDiscussionOrder """ - If provided, filters discussions according to whether or not they are pinned. - """ isPinned: Boolean """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubTeamDiscussionConnection! + discussions( + orderBy: GitHubTeamDiscussionOrder + isPinned: Boolean + last: Int + first: Int + before: String + after: String + ): GitHubTeamDiscussionConnection! """ The HTTP path for team discussions """ @@ -252697,49 +241756,30 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ A list of pending invitations for users to this team """ - invitations(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationInvitationConnection + invitations(last: Int, first: Int, before: String, after: String): GitHubOrganizationInvitationConnection """ Get the status messages members of this entity have set that are either public or visible only to the organization. """ - memberStatuses(""" - Ordering options for user statuses returned from the connection. - """ orderBy: GitHubUserStatusOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserStatusConnection! + memberStatuses( + orderBy: GitHubUserStatusOrder + last: Int + first: Int + before: String + after: String + ): GitHubUserStatusConnection! """ A list of users who are members of this team. """ - members(""" - Order for the connection. - """ orderBy: GitHubTeamMemberOrder """ - Filter by team member role - """ role: GitHubTeamMemberRole """ - Filter by membership type - """ membership: GitHubTeamMembershipType """ - The search string to look for. - """ query: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubTeamMemberConnection! + members( + orderBy: GitHubTeamMemberOrder + role: GitHubTeamMemberRole + membership: GitHubTeamMembershipType + query: String + last: Int + first: Int + before: String + after: String + ): GitHubTeamMemberConnection! """ The HTTP path for the team' members """ @@ -252775,19 +241815,14 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ A list of repositories this team has access to. """ - repositories(""" - Order for the connection. - """ orderBy: GitHubTeamRepositoryOrder """ - The search string to look for. - """ query: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubTeamRepositoryConnection! + repositories( + orderBy: GitHubTeamRepositoryOrder + query: String + last: Int + first: Int + before: String + after: String + ): GitHubTeamRepositoryConnection! """ The HTTP path for this team's repositories """ @@ -252832,9 +241867,7 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH Identifies if the viewer is watching, not watching, or ignoring the subscribable entity. """ viewerSubscription: GitHubSubscriptionState - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -252862,9 +241895,7 @@ type GitHubPushAllowance implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -253004,15 +242035,12 @@ type GitHubBranchProtectionRule implements OneGraphNode & GitHubNode { """ A list of conflicts matching branches protection rule and other branch protection rules """ - branchProtectionRuleConflicts(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubBranchProtectionRuleConflictConnection! + branchProtectionRuleConflicts( + last: Int + first: Int + before: String + after: String + ): GitHubBranchProtectionRuleConflictConnection! """ The actor who created this branch protection rule. """ @@ -253036,17 +242064,13 @@ type GitHubBranchProtectionRule implements OneGraphNode & GitHubNode { """ Repository refs that are protected by this rule """ - matchingRefs(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filters refs with query on name - """ query: String): GitHubRefConnection! + matchingRefs( + last: Int + first: Int + before: String + after: String + query: String + ): GitHubRefConnection! """ Identifies the protection rule pattern. """ @@ -253054,15 +242078,7 @@ type GitHubBranchProtectionRule implements OneGraphNode & GitHubNode { """ A list push allowances for this branch protection rule. """ - pushAllowances(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubPushAllowanceConnection! + pushAllowances(last: Int, first: Int, before: String, after: String): GitHubPushAllowanceConnection! """ The repository associated with this branch protection rule. """ @@ -253106,18 +242122,13 @@ type GitHubBranchProtectionRule implements OneGraphNode & GitHubNode { """ A list review dismissal allowances for this branch protection rule. """ - reviewDismissalAllowances(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubReviewDismissalAllowanceConnection! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + reviewDismissalAllowances( + last: Int + first: Int + before: String + after: String + ): GitHubReviewDismissalAllowanceConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -253167,29 +242178,17 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of users that can be assigned to issues in this repository. """ - assignableUsers(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filters users with query on user name and login - """ query: String): GitHubUserConnection! + assignableUsers( + last: Int + first: Int + before: String + after: String + query: String + ): GitHubUserConnection! """ A list of branch protection rules for this repository. """ - branchProtectionRules(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubBranchProtectionRuleConnection! + branchProtectionRules(last: Int, first: Int, before: String, after: String): GitHubBranchProtectionRuleConnection! """ Returns the code of conduct for this repository """ @@ -253197,31 +242196,18 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of collaborators associated with the repository. """ - collaborators(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filters users with query on user name and login - """ query: String """ - Collaborators affiliation level with a repository. - """ affiliation: GitHubCollaboratorAffiliation): GitHubRepositoryCollaboratorConnection + collaborators( + last: Int + first: Int + before: String + after: String + query: String + affiliation: GitHubCollaboratorAffiliation + ): GitHubRepositoryCollaboratorConnection """ A list of commit comments associated with the repository. """ - commitComments(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCommitCommentConnection! + commitComments(last: Int, first: Int, before: String, after: String): GitHubCommitCommentConnection! """ Identifies the date and time when the object was created. """ @@ -253241,31 +242227,18 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of deploy keys that are on this repository. """ - deployKeys(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubDeployKeyConnection! + deployKeys(last: Int, first: Int, before: String, after: String): GitHubDeployKeyConnection! """ Deployments associated with the repository """ - deployments(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for deployments returned from the connection. - """ orderBy: GitHubDeploymentOrder """ - Environments to list deployments for - """ environments: [String!]): GitHubDeploymentConnection! + deployments( + last: Int + first: Int + before: String + after: String + orderBy: GitHubDeploymentOrder + environments: [String!] + ): GitHubDeploymentConnection! """ The description of the repository. """ @@ -253285,25 +242258,17 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of direct forked repositories. """ - forks(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - If non-null, filters repositories according to whether they have been locked - """ 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] """ - 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] """ - Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ - If non-null, filters repositories according to privacy - """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! + forks( + last: Int + first: Int + before: String + after: String + isLocked: Boolean + ownerAffiliations: [GitHubRepositoryAffiliation] + affiliations: [GitHubRepositoryAffiliation] + orderBy: GitHubRepositoryOrder + privacy: GitHubRepositoryPrivacy + ): GitHubRepositoryConnection! """ The funding links for this repository """ @@ -253359,71 +242324,49 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ Returns a single issue from the current repository by number. """ - issue(""" - The number for the issue to be returned. - """ number: Int!): GitHubIssue + issue(number: Int!): GitHubIssue """ Returns a single issue-like object from the current repository by number. """ - issueOrPullRequest(""" - The number for the issue to be returned. - """ number: Int!): GitHubIssueOrPullRequest + issueOrPullRequest(number: Int!): GitHubIssueOrPullRequest """ A list of issues that have been opened in the repository. """ - issues(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filtering options for issues returned from the connection. - """ filterBy: GitHubIssueFilters """ - A list of states to filter the issues by. - """ states: [GitHubIssueState!] """ - A list of label names to filter the pull requests by. - """ labels: [String!] """ - Ordering options for issues returned from the connection. - """ orderBy: GitHubIssueOrder): GitHubIssueConnection! + issues( + last: Int + first: Int + before: String + after: String + filterBy: GitHubIssueFilters + states: [GitHubIssueState!] + labels: [String!] + orderBy: GitHubIssueOrder + ): GitHubIssueConnection! """ Returns a single label by name """ - label(""" - Label name - """ name: String!): GitHubLabel + label(name: String!): GitHubLabel """ A list of labels associated with the repository. """ - labels(""" - If provided, searches labels by name and description. - """ query: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for labels returned from the connection. - """ orderBy: GitHubLabelOrder): GitHubLabelConnection + labels( + query: String + last: Int + first: Int + before: String + after: String + orderBy: GitHubLabelOrder + ): GitHubLabelConnection """ A list containing a breakdown of the language composition of the repository. """ - languages(""" - Order for connection - """ orderBy: GitHubLanguageOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubLanguageConnection + languages( + orderBy: GitHubLanguageOrder + last: Int + first: Int + before: String + after: String + ): GitHubLanguageConnection """ The license associated with the repository """ @@ -253435,17 +242378,13 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of Users that can be mentioned in the context of the repository. """ - mentionableUsers(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filters users with query on user name and login - """ query: String): GitHubUserConnection! + mentionableUsers( + last: Int + first: Int + before: String + after: String + query: String + ): GitHubUserConnection! """ Whether or not PRs are merged with a merge commit on this repository. """ @@ -253453,25 +242392,18 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ Returns a single milestone from the current repository by number. """ - milestone(""" - The number for the milestone to be returned. - """ number: Int!): GitHubMilestone + milestone(number: Int!): GitHubMilestone """ A list of milestones associated with the repository. """ - milestones(""" - Ordering options for milestones. - """ orderBy: GitHubMilestoneOrder """ - Filter by the state of the milestones. - """ states: [GitHubMilestoneState!] """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubMilestoneConnection + milestones( + orderBy: GitHubMilestoneOrder + states: [GitHubMilestoneState!] + last: Int + first: Int + before: String + after: String + ): GitHubMilestoneConnection """ The repository's original mirror URL. """ @@ -253487,11 +242419,7 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A Git object in the repository """ - object(""" - A Git revision expression suitable for rev-parse - """ expression: String """ - The Git object ID - """ oid: String): GitHubGitObject + object(expression: String, oid: String): GitHubGitObject """ The image used to represent this repository in Open Graph data. """ @@ -253511,27 +242439,19 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ Find project by number. """ - project(""" - The project number to find. - """ number: Int!): GitHubProject + project(number: Int!): GitHubProject """ A list of projects under the owner. """ - projects(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - A list of states to filter the projects by. - """ states: [GitHubProjectState!] """ - Query to search projects by, currently only searching by name. - """ search: String """ - Ordering options for projects returned from the connection - """ orderBy: GitHubProjectOrder): GitHubProjectConnection! + projects( + last: Int + first: Int + before: String + after: String + states: [GitHubProjectState!] + search: String + orderBy: GitHubProjectOrder + ): GitHubProjectConnection! """ The HTTP path listing the repository's projects """ @@ -253543,31 +242463,21 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ Returns a single pull request from the current repository by number. """ - pullRequest(""" - The number for the pull request to be returned. - """ number: Int!): GitHubPullRequest + pullRequest(number: Int!): GitHubPullRequest """ A list of pull requests that have been opened in the repository. """ - pullRequests(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for pull requests returned from the connection. - """ orderBy: GitHubIssueOrder """ - The base ref name to filter the pull requests by. - """ baseRefName: String """ - The head ref name to filter the pull requests by. - """ headRefName: String """ - A list of label names to filter the pull requests by. - """ labels: [String!] """ - A list of states to filter the pull requests by. - """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! + pullRequests( + last: Int + first: Int + before: String + after: String + orderBy: GitHubIssueOrder + baseRefName: String + headRefName: String + labels: [String!] + states: [GitHubPullRequestState!] + ): GitHubPullRequestConnection! """ Identifies when the repository was last pushed to. """ @@ -253579,101 +242489,66 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ Fetch a given ref from the repository """ - ref(""" - The ref to retrieve. Fully qualified matches are checked in order (`refs/heads/master`) before falling back onto checks for short name matches (`master`). - """ qualifiedName: String!): GitHubRef + ref(qualifiedName: String!): GitHubRef """ Fetch a list of refs from the repository """ - refs(""" - Ordering options for refs returned from the connection. - """ orderBy: GitHubRefOrder """ - DEPRECATED: use orderBy. The ordering direction. - """ direction: GitHubOrderDirection """ - A ref name prefix like `refs/heads/`, `refs/tags/`, etc. - """ refPrefix: String! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filters refs with query on name - """ query: String): GitHubRefConnection + refs( + orderBy: GitHubRefOrder + direction: GitHubOrderDirection + refPrefix: String! + last: Int + first: Int + before: String + after: String + query: String + ): GitHubRefConnection """ A list of registry packages under the owner. """ - registryPackages(""" - Filter registry package by whether it is publicly visible - """ publicOnly: Boolean """ - Filter registry package by type (string). - """ registryPackageType: String """ - Filter registry package by type. - """ packageType: GitHubRegistryPackageType """ - Find registry packages in a repository. - """ repositoryId: ID """ - Find registry packages by their names. - """ names: [String] """ - Find registry package by name. - """ name: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ 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.") + registryPackages( + publicOnly: Boolean + registryPackageType: String + packageType: GitHubRegistryPackageType + repositoryId: ID + names: [String] + name: String + last: Int + first: Int + before: String + 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 """ - Find registry package by search query. - """ query: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ 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.") + registryPackagesForQuery( + packageType: GitHubRegistryPackageType + query: String + last: Int + first: Int + before: String + 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. """ - release(""" - The name of the Tag the Release was created from - """ tagName: String!): GitHubRelease + release(tagName: String!): GitHubRelease """ List of releases which are dependent on this repository. """ - releases(""" - Order for connection - """ orderBy: GitHubReleaseOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubReleaseConnection! + releases( + orderBy: GitHubReleaseOrder + last: Int + first: Int + before: String + after: String + ): GitHubReleaseConnection! """ A list of applied repository-topic associations for this repository. """ - repositoryTopics(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRepositoryTopicConnection! + repositoryTopics(last: Int, first: Int, before: String, after: String): GitHubRepositoryTopicConnection! """ The HTTP path for this repository """ @@ -253681,9 +242556,7 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A description of the repository, rendered to HTML without any links in it. """ - shortDescriptionHTML(""" - How many characters to return. - """ limit: Int): String! + shortDescriptionHTML(limit: Int): String! """ Whether or not squash-merging is enabled on this repository. """ @@ -253695,29 +242568,17 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of users who have starred this starrable. """ - stargazers(""" - Order for connection - """ orderBy: GitHubStarOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubStargazerConnection! + stargazers( + orderBy: GitHubStarOrder + last: Int + first: Int + before: String + after: String + ): GitHubStargazerConnection! """ Returns a list of all submodules in this repository parsed from the .gitmodules file as of the default branch's HEAD commit. """ - submodules(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubSubmoduleConnection! + submodules(last: Int, first: Int, before: String, after: String): GitHubSubmoduleConnection! """ Temporary authentication token for cloning this repository. """ @@ -253769,42 +242630,24 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of vulnerability alerts that are on this repository. """ - vulnerabilityAlerts(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRepositoryVulnerabilityAlertConnection + vulnerabilityAlerts(last: Int, first: Int, before: String, after: String): GitHubRepositoryVulnerabilityAlertConnection """ A list of users watching the repository. """ - watchers(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserConnection! + watchers(last: Int, first: Int, before: String, after: String): GitHubUserConnection! """ Lists contributors to the specified repository and sorts them by the number of commits per contributor in descending order. This endpoint may return information that is a few hours old because the GitHub REST API v3 caches contributor data to improve performance. Note that GitHub identifies contributors by author email address. This field groups contribution counts by GitHub user, which includes all associated email addresses. To improve performance, only the first 500 author email addresses in the repository link to GitHub users. The rest will appear as anonymous contributors without associated GitHub user information. """ - 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.*") + contributors_oneGraph(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.*") - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + viewerIsCollaborator_oneGraph: Boolean! + @deprecated(reason: "*Temporary mutation until GitHub implemements their own `viewerIsCollaborator` field for a repository.*") + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -253873,25 +242716,17 @@ type GitHubRef implements OneGraphNode & GitHubNode { """ A list of pull requests with this ref as the head ref. """ - associatedPullRequests(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for pull requests returned from the connection. - """ orderBy: GitHubIssueOrder """ - The base ref name to filter the pull requests by. - """ baseRefName: String """ - The head ref name to filter the pull requests by. - """ headRefName: String """ - A list of label names to filter the pull requests by. - """ labels: [String!] """ - A list of states to filter the pull requests by. - """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! + associatedPullRequests( + last: Int + first: Int + before: String + after: String + orderBy: GitHubIssueOrder + baseRefName: String + headRefName: String + labels: [String!] + states: [GitHubPullRequestState!] + ): GitHubPullRequestConnection! """ """ @@ -253912,9 +242747,7 @@ type GitHubRef implements OneGraphNode & GitHubNode { The object the ref points to. """ target: GitHubGitObject! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -254013,15 +242846,7 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of Users assigned to this object. """ - assignees(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserConnection! + assignees(last: Int, first: Int, before: String, after: String): GitHubUserConnection! """ The actor who authored the comment. """ @@ -254081,27 +242906,11 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of comments associated with the pull request. """ - comments(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubIssueCommentConnection! + comments(last: Int, first: Int, before: String, after: String): GitHubIssueCommentConnection! """ A list of commits present in this pull request's head branch not present in the base branch. """ - commits(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubPullRequestCommitConnection! + commits(last: Int, first: Int, before: String, after: String): GitHubPullRequestCommitConnection! """ Identifies the date and time when the object was created. """ @@ -254125,15 +242934,7 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ Lists the files changed within this pull request. """ - files(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubPullRequestChangedFileConnection + files(last: Int, first: Int, before: String, after: String): GitHubPullRequestChangedFileConnection """ Identifies the head Ref associated with the pull request. """ @@ -254157,9 +242958,7 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ The hovercard information for this issue """ - hovercard(""" - Whether or not to include notification contexts - """ includeNotificationContexts: Boolean): GitHubHovercard! + hovercard(includeNotificationContexts: Boolean): GitHubHovercard! """ """ @@ -254179,17 +242978,13 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of labels associated with the object. """ - labels(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for labels returned from the connection. - """ orderBy: GitHubLabelOrder): GitHubLabelConnection + labels( + last: Int + first: Int + before: String + after: String + orderBy: GitHubLabelOrder + ): GitHubLabelConnection """ The moment the editor made the last edit """ @@ -254233,15 +243028,7 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of Users that are participating in the Pull Request conversation. """ - participants(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserConnection! + participants(last: Int, first: Int, before: String, after: String): GitHubUserConnection! """ The permalink to the pull request. """ @@ -254253,17 +243040,13 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ List of project cards associated with this pull request. """ - projectCards(""" - A list of archived states to filter the cards by - """ archivedStates: [GitHubProjectCardArchivedState] """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubProjectCardConnection! + projectCards( + archivedStates: [GitHubProjectCardArchivedState] + last: Int + first: Int + before: String + after: String + ): GitHubProjectCardConnection! """ Identifies when the comment was published at. """ @@ -254275,19 +243058,14 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of Reactions left on the Issue. """ - reactions(""" - Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ - Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubReactionConnection! + reactions( + orderBy: GitHubReactionOrder + content: GitHubReactionContent + last: Int + first: Int + before: String + after: String + ): GitHubReactionConnection! """ The repository associated with this node. """ @@ -254311,43 +243089,22 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of review requests associated with the pull request. """ - reviewRequests(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubReviewRequestConnection + reviewRequests(last: Int, first: Int, before: String, after: String): GitHubReviewRequestConnection """ The list of all review threads for this pull request. """ - reviewThreads(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubPullRequestReviewThreadConnection! + reviewThreads(last: Int, first: Int, before: String, after: String): GitHubPullRequestReviewThreadConnection! """ A list of reviews associated with the pull request. """ - reviews(""" - Filter by author of the review. - """ author: String """ - A list of states to filter the reviews. - """ states: [GitHubPullRequestReviewState!] """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubPullRequestReviewConnection + reviews( + author: String + states: [GitHubPullRequestReviewState!] + last: Int + first: Int + before: String + after: String + ): GitHubPullRequestReviewConnection """ Identifies the state of the pull request. """ @@ -254359,35 +243116,20 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of events, comments, commits, etc. associated with the pull request. """ - timeline(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ 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.") + timeline(last: Int, first: Int, before: String, after: String, 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 """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filter timeline items by type. - """ itemTypes: [GitHubPullRequestTimelineItemsItemType!] """ - Skips the first _n_ elements in the list. - """ skip: Int """ - Filter timeline items by a `since` timestamp. - """ since: String): GitHubPullRequestTimelineItemsConnection! + timelineItems( + last: Int + first: Int + before: String + after: String + itemTypes: [GitHubPullRequestTimelineItemsItemType!] + skip: Int + since: String + ): GitHubPullRequestTimelineItemsConnection! """ Identifies the pull request title. """ @@ -254403,15 +243145,7 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of edits to this content. """ - userContentEdits(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserContentEditConnection + userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection """ Whether or not the viewer can apply suggestion. """ @@ -254440,9 +243174,7 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub Identifies if the viewer is watching, not watching, or ignoring the subscribable entity. """ viewerSubscription: GitHubSubscriptionState - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -254500,17 +243232,13 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ The pull requests associated with a commit """ - associatedPullRequests(""" - Ordering options for pull requests. - """ orderBy: GitHubPullRequestOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubPullRequestConnection + associatedPullRequests( + orderBy: GitHubPullRequestOrder + last: Int + first: Int + before: String + after: String + ): GitHubPullRequestConnection """ Authorship details of the commit. """ @@ -254526,9 +243254,7 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ Fetches `git blame` information. """ - blame(""" - The file whose Git blame information you want. - """ path: String!): GitHubBlame! + blame(path: String!): GitHubBlame! """ The number of changed files in this commit. """ @@ -254536,15 +243262,7 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ Comments made on the commit. """ - comments(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCommitCommentConnection! + comments(last: Int, first: Int, before: String, after: String): GitHubCommitCommentConnection! """ The HTTP path for this Git object """ @@ -254572,39 +243290,27 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ The deployments associated with a commit. """ - deployments(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for deployments returned from the connection. - """ orderBy: GitHubDeploymentOrder """ - Environments to list deployments for - """ environments: [String!]): GitHubDeploymentConnection + deployments( + last: Int + first: Int + before: String + after: String + orderBy: GitHubDeploymentOrder + environments: [String!] + ): GitHubDeploymentConnection """ The linear commit history starting from (and including) this commit, in the same order as `git log`. """ - history(""" - Allows specifying an ending time or date for fetching commits. - """ until: String """ - Allows specifying a beginning time or date for fetching commits. - """ since: String """ - If non-null, filters history to only show commits with matching authorship. - """ author: GitHubCommitAuthor """ - If non-null, filters history to only show commits touching files under this path. - """ path: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCommitHistoryConnection! + history( + until: String + since: String + author: GitHubCommitAuthor + path: String + last: Int + first: Int + before: String + after: String + ): GitHubCommitHistoryConnection! """ """ @@ -254640,15 +243346,7 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ The parents of a commit. """ - parents(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCommitConnection! + parents(last: Int, first: Int, before: String, after: String): GitHubCommitConnection! """ The datetime when this commit was pushed. """ @@ -254676,15 +243374,7 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file. """ - submodules(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubSubmoduleConnection! + submodules(last: Int, first: Int, before: String, after: String): GitHubSubmoduleConnection! """ Returns a URL to download a tarball archive for a repository. Note: For private repositories, these links are temporary and expire after five minutes. @@ -254719,9 +243409,7 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git Note: For private repositories, these links are temporary and expire after five minutes. """ zipballUrl: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -254839,19 +243527,14 @@ type GitHubPullRequestReviewComment implements OneGraphNode & GitHubUpdatableCom """ A list of Reactions left on the Issue. """ - reactions(""" - Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ - Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubReactionConnection! + reactions( + orderBy: GitHubReactionOrder + content: GitHubReactionContent + last: Int + first: Int + before: String + after: String + ): GitHubReactionConnection! """ The comment this is a reply to. """ @@ -254879,15 +243562,7 @@ type GitHubPullRequestReviewComment implements OneGraphNode & GitHubUpdatableCom """ A list of edits to this content. """ - userContentEdits(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserContentEditConnection + userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection """ Check if the current viewer can delete this object. """ @@ -254912,9 +243587,7 @@ type GitHubPullRequestReviewComment implements OneGraphNode & GitHubUpdatableCom Did the viewer author this comment. """ viewerDidAuthor: Boolean! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -254940,19 +243613,14 @@ interface GitHubReactable { """ A list of Reactions left on the Issue. """ - reactions(""" - Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ - Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubReactionConnection! + reactions( + orderBy: GitHubReactionOrder + content: GitHubReactionContent + last: Int + first: Int + before: String + after: String + ): GitHubReactionConnection! """ Can user react to this subject """ @@ -255013,15 +243681,7 @@ type GitHubReactionGroup { """ Users who have reacted to the reaction subject with the emotion represented by this reaction group """ - users(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubReactingUserConnection! + users(last: Int, first: Int, before: String, after: String): GitHubReactingUserConnection! """ Whether or not the authenticated user has left a reaction on the subject. """ @@ -255103,19 +243763,14 @@ type GitHubTeamDiscussionComment implements OneGraphNode & GitHubUpdatableCommen """ A list of Reactions left on the Issue. """ - reactions(""" - Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ - Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubReactionConnection! + reactions( + orderBy: GitHubReactionOrder + content: GitHubReactionContent + last: Int + first: Int + before: String + after: String + ): GitHubReactionConnection! """ The HTTP path for this comment """ @@ -255131,15 +243786,7 @@ type GitHubTeamDiscussionComment implements OneGraphNode & GitHubUpdatableCommen """ A list of edits to this content. """ - userContentEdits(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserContentEditConnection + userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection """ Check if the current viewer can delete this object. """ @@ -255160,9 +243807,7 @@ type GitHubTeamDiscussionComment implements OneGraphNode & GitHubUpdatableCommen Did the viewer author this comment. """ viewerDidAuthor: Boolean! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -255267,19 +243912,14 @@ type GitHubTeamDiscussion implements OneGraphNode & GitHubUpdatableComment & Git """ A list of comments on this discussion. """ - comments(""" - When provided, filters the connection such that results begin with the comment with this number. - """ fromComment: Int """ - Order for connection - """ orderBy: GitHubTeamDiscussionCommentOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubTeamDiscussionCommentConnection! + comments( + fromComment: Int + orderBy: GitHubTeamDiscussionCommentOrder + last: Int + first: Int + before: String + after: String + ): GitHubTeamDiscussionCommentConnection! """ The HTTP path for discussion comments """ @@ -255339,19 +243979,14 @@ type GitHubTeamDiscussion implements OneGraphNode & GitHubUpdatableComment & Git """ A list of Reactions left on the Issue. """ - reactions(""" - Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ - Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubReactionConnection! + reactions( + orderBy: GitHubReactionOrder + content: GitHubReactionContent + last: Int + first: Int + before: String + after: String + ): GitHubReactionConnection! """ The HTTP path for this discussion """ @@ -255375,15 +244010,7 @@ type GitHubTeamDiscussion implements OneGraphNode & GitHubUpdatableComment & Git """ A list of edits to this content. """ - userContentEdits(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserContentEditConnection + userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection """ Check if the current viewer can delete this object. """ @@ -255416,9 +244043,7 @@ type GitHubTeamDiscussion implements OneGraphNode & GitHubUpdatableComment & Git Identifies if the viewer is watching, not watching, or ignoring the subscribable entity. """ viewerSubscription: GitHubSubscriptionState - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -255463,9 +244088,7 @@ type GitHubUnsubscribedEvent implements OneGraphNode & GitHubNode { Object referenced by event. """ subscribable: GitHubSubscribable! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -255524,9 +244147,7 @@ type GitHubUserBlockedEvent implements OneGraphNode & GitHubNode { The user who was blocked. """ subject: GitHubUser - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -255569,9 +244190,7 @@ type GitHubUserContentEdit implements OneGraphNode & GitHubNode { Identifies the date and time when the object was last updated. """ updatedAt: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -255726,9 +244345,7 @@ type GitHubUserStatus implements OneGraphNode & GitHubNode { The user who has this status. """ user: GitHubUser! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -255746,9 +244363,7 @@ interface OneGraphNode { """ List of OneGraphNodes that are linked from this node. """ - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! } """ @@ -255768,9 +244383,7 @@ type GitHubBot implements OneGraphNode & GitHubUniformResourceLocatable & GitHub """ A URL pointing to the GitHub App's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl(size: Int): String! """ Identifies the date and time when the object was created. """ @@ -255799,9 +244412,7 @@ type GitHubBot implements OneGraphNode & GitHubUniformResourceLocatable & GitHub The HTTP URL for this bot """ url: String! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -255925,9 +244536,7 @@ type GitHubTeamRemoveRepositoryAuditEntry implements OneGraphNode & GitHubTeamAu The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -255982,31 +244591,22 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ Determine if this repository owner has any items that can be pinned to their profile. """ - anyPinnableItems(""" - Filter to only a particular kind of pinnable item. - """ type: GitHubPinnableItemType): Boolean! + anyPinnableItems(type: GitHubPinnableItemType): Boolean! """ Audit log entries of the organization """ - auditLog(""" - Ordering options for the returned audit log entries. - """ orderBy: GitHubAuditLogOrder """ - The query string to filter audit entries - """ query: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationAuditEntryConnection! + auditLog( + orderBy: GitHubAuditLogOrder + query: String + last: Int + first: Int + before: String + after: String + ): GitHubOrganizationAuditEntryConnection! """ A URL pointing to the organization's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl(size: Int): String! """ Identifies the date and time when the object was created. """ @@ -256050,29 +244650,17 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ Get the status messages members of this entity have set that are either public or visible only to the organization. """ - memberStatuses(""" - Ordering options for user statuses returned from the connection. - """ orderBy: GitHubUserStatusOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserStatusConnection! + memberStatuses( + orderBy: GitHubUserStatusOrder + last: Int + first: Int + before: String + after: String + ): GitHubUserStatusConnection! """ A list of users who are members of this organization. """ - membersWithRole(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationMemberConnection! + membersWithRole(last: Int, first: Int, before: String, after: String): GitHubOrganizationMemberConnection! """ The organization's public profile name. """ @@ -256092,43 +244680,27 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ A list of users who have been invited to join this organization. """ - pendingMembers(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserConnection! + pendingMembers(last: Int, first: Int, before: String, after: String): GitHubUserConnection! """ A list of repositories and gists this profile owner can pin to their profile. """ - pinnableItems(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filter the types of pinnable items that are returned. - """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! + pinnableItems( + last: Int + first: Int + before: String + after: String + types: [GitHubPinnableItemType!] + ): GitHubPinnableItemConnection! """ A list of repositories and gists this profile owner has pinned to their profile """ - pinnedItems(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filter the types of pinned items that are returned. - """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! + pinnedItems( + last: Int + first: Int + before: String + after: String + types: [GitHubPinnableItemType!] + ): GitHubPinnableItemConnection! """ Returns how many more items this profile owner can pin to their profile. """ @@ -256136,49 +244708,34 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ A list of repositories this user has pinned to their profile """ - pinnedRepositories(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - If non-null, filters repositories according to whether they have been locked - """ 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] """ - 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] """ - Ordering options for repositories returned from the connection - """ 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.") + pinnedRepositories( + last: Int + first: Int + before: String + after: String + isLocked: Boolean + ownerAffiliations: [GitHubRepositoryAffiliation] + affiliations: [GitHubRepositoryAffiliation] + orderBy: GitHubRepositoryOrder + privacy: GitHubRepositoryPrivacy + ): GitHubRepositoryConnection! + @deprecated(reason: "pinnedRepositories will be removed Use ProfileOwner.pinnedItems instead. Removal on 2019-10-01 UTC.") """ Find project by number. """ - project(""" - The project number to find. - """ number: Int!): GitHubProject + project(number: Int!): GitHubProject """ A list of projects under the owner. """ - projects(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - A list of states to filter the projects by. - """ states: [GitHubProjectState!] """ - Query to search projects by, currently only searching by name. - """ search: String """ - Ordering options for projects returned from the connection - """ orderBy: GitHubProjectOrder): GitHubProjectConnection! + projects( + last: Int + first: Int + before: String + after: String + states: [GitHubProjectState!] + search: String + orderBy: GitHubProjectOrder + ): GitHubProjectConnection! """ The HTTP path listing organization's projects """ @@ -256190,73 +244747,50 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ A list of registry packages under the owner. """ - registryPackages(""" - Filter registry package by whether it is publicly visible - """ publicOnly: Boolean """ - Filter registry package by type (string). - """ registryPackageType: String """ - Filter registry package by type. - """ packageType: GitHubRegistryPackageType """ - Find registry packages in a repository. - """ repositoryId: ID """ - Find registry packages by their names. - """ names: [String] """ - Find registry package by name. - """ name: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ 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.") + registryPackages( + publicOnly: Boolean + registryPackageType: String + packageType: GitHubRegistryPackageType + repositoryId: ID + names: [String] + name: String + last: Int + first: Int + before: String + 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 """ - Find registry package by search query. - """ query: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ 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.") + registryPackagesForQuery( + packageType: GitHubRegistryPackageType + query: String + last: Int + first: Int + before: String + 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 """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - If non-null, filters repositories according to whether they have been locked - """ 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] """ - 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] """ - Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ - If non-null, filters repositories according to privacy - """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! + repositories( + isFork: Boolean + last: Int + first: Int + before: String + after: String + isLocked: Boolean + ownerAffiliations: [GitHubRepositoryAffiliation] + affiliations: [GitHubRepositoryAffiliation] + orderBy: GitHubRepositoryOrder + privacy: GitHubRepositoryPrivacy + ): GitHubRepositoryConnection! """ Find Repository. """ - repository(""" - Name of Repository to find. - """ name: String!): GitHubRepository + repository(name: String!): GitHubRepository """ When true the organization requires all members, billing managers, and outside collaborators to enable two-factor authentication. """ @@ -256276,65 +244810,44 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ This object's sponsorships as the maintainer. """ - 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 """ - Whether or not to include private sponsorships in the result set - """ includePrivate: Boolean """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubSponsorshipConnection! + sponsorshipsAsMaintainer( + orderBy: GitHubSponsorshipOrder + includePrivate: Boolean + last: Int + first: Int + before: String + after: String + ): GitHubSponsorshipConnection! """ This object's sponsorships as the sponsor. """ - 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 """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubSponsorshipConnection! + sponsorshipsAsSponsor( + orderBy: GitHubSponsorshipOrder + last: Int + first: Int + before: String + after: String + ): GitHubSponsorshipConnection! """ Find an organization's team by its slug. """ - team(""" - The name or slug of the team to find. - """ slug: String!): GitHubTeam + team(slug: String!): GitHubTeam """ A list of teams in this organization. """ - teams(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - If true, restrict to only root teams - """ rootTeamsOnly: Boolean """ - If true, filters teams that are mapped to an LDAP Group (Enterprise only) - """ ldapMapped: Boolean """ - Ordering options for teams returned from the connection - """ orderBy: GitHubTeamOrder """ - User logins to filter by - """ userLogins: [String!] """ - If non-null, filters teams with query on team name and team slug - """ query: String """ - If non-null, filters teams according to whether the viewer is an admin or member on team - """ role: GitHubTeamRole """ - If non-null, filters teams according to privacy - """ privacy: GitHubTeamPrivacy): GitHubTeamConnection! + teams( + last: Int + first: Int + before: String + after: String + rootTeamsOnly: Boolean + ldapMapped: Boolean + orderBy: GitHubTeamOrder + userLogins: [String!] + query: String + role: GitHubTeamRole + privacy: GitHubTeamPrivacy + ): GitHubTeamConnection! """ The HTTP path listing organization's teams """ @@ -256379,9 +244892,7 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable The organization's public profile URL. """ websiteUrl: String - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -256395,9 +244906,7 @@ interface GitHubActor { """ A URL pointing to the actor's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl(size: Int): String! """ The username of the actor. """ @@ -256495,19 +245004,14 @@ type GitHubCommitComment implements OneGraphNode & GitHubUpdatableComment & GitH """ A list of Reactions left on the Issue. """ - reactions(""" - Allows specifying the order in which reactions are returned. - """ orderBy: GitHubReactionOrder """ - Allows filtering Reactions by emoji. - """ content: GitHubReactionContent """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubReactionConnection! + reactions( + orderBy: GitHubReactionOrder + content: GitHubReactionContent + last: Int + first: Int + before: String + after: String + ): GitHubReactionConnection! """ The repository associated with this node. """ @@ -256527,15 +245031,7 @@ type GitHubCommitComment implements OneGraphNode & GitHubUpdatableComment & GitH """ A list of edits to this content. """ - userContentEdits(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubUserContentEditConnection + userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection """ Check if the current viewer can delete this object. """ @@ -256560,9 +245056,7 @@ type GitHubCommitComment implements OneGraphNode & GitHubUpdatableComment & GitH Did the viewer author this comment. """ viewerDidAuthor: Boolean! - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -256647,15 +245141,11 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ Determine if this repository owner has any items that can be pinned to their profile. """ - anyPinnableItems(""" - Filter to only a particular kind of pinnable item. - """ type: GitHubPinnableItemType): Boolean! + anyPinnableItems(type: GitHubPinnableItemType): Boolean! """ A URL pointing to the user's public avatar. """ - avatarUrl(""" - The size of the resulting square image. - """ size: Int): String! + avatarUrl(size: Int): String! """ The user's public profile bio. """ @@ -256667,15 +245157,7 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of commit comments made by this user. """ - commitComments(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubCommitCommentConnection! + commitComments(last: Int, first: Int, before: String, after: String): GitHubCommitCommentConnection! """ The user's public profile company. """ @@ -256687,13 +245169,7 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ The collection of contributions this user has made to different repositories. """ - contributionsCollection(""" - Only contributions made before and up to and including this time will be counted. If omitted, defaults to the current time. - """ to: String """ - Only contributions made at this time or later will be counted. If omitted, defaults to a year ago. - """ from: String """ - The ID of the organization used to filter contributions. - """ organizationID: ID): GitHubContributionsCollection! + contributionsCollection(to: String, from: String, organizationID: ID): GitHubContributionsCollection! """ Identifies the date and time when the object was created. """ @@ -256709,67 +245185,34 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of users the given user is followed by. """ - followers(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubFollowerConnection! + followers(last: Int, first: Int, before: String, after: String): GitHubFollowerConnection! """ A list of users the given user is following. """ - following(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubFollowingConnection! + following(last: Int, first: Int, before: String, after: String): GitHubFollowingConnection! """ Find gist by repo name. """ - gist(""" - The gist name to find. - """ name: String!): GitHubGist + gist(name: String!): GitHubGist """ A list of gist comments made by this user. """ - gistComments(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubGistCommentConnection! + gistComments(last: Int, first: Int, before: String, after: String): GitHubGistCommentConnection! """ A list of the Gists the user has created. """ - gists(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for gists returned from the connection - """ orderBy: GitHubGistOrder """ - Filters Gists according to privacy. - """ privacy: GitHubGistPrivacy): GitHubGistConnection! + gists( + last: Int + first: Int + before: String + after: String + orderBy: GitHubGistOrder + privacy: GitHubGistPrivacy + ): GitHubGistConnection! """ The hovercard information for this user in a given context """ - hovercard(""" - The ID of the subject to get the hovercard in the context of - """ primarySubjectId: ID): GitHubHovercard! + hovercard(primarySubjectId: ID): GitHubHovercard! """ """ @@ -256805,35 +245248,20 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of issue comments made by this user. """ - issueComments(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubIssueCommentConnection! + issueComments(last: Int, first: Int, before: String, after: String): GitHubIssueCommentConnection! """ A list of issues associated with this user. """ - issues(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filtering options for issues returned from the connection. - """ filterBy: GitHubIssueFilters """ - A list of states to filter the issues by. - """ states: [GitHubIssueState!] """ - A list of label names to filter the pull requests by. - """ labels: [String!] """ - Ordering options for issues returned from the connection. - """ orderBy: GitHubIssueOrder): GitHubIssueConnection! + issues( + last: Int + first: Int + before: String + after: String + filterBy: GitHubIssueFilters + states: [GitHubIssueState!] + labels: [String!] + orderBy: GitHubIssueOrder + ): GitHubIssueConnection! """ Showcases a selection of repositories and gists that the profile owner has either curated or that have been selected automatically based on popularity. """ @@ -256853,49 +245281,31 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ Find an organization by its login that the user belongs to. """ - organization(""" - The login of the organization to find. - """ login: String!): GitHubOrganization + organization(login: String!): GitHubOrganization """ A list of organizations the user belongs to. """ - organizations(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubOrganizationConnection! + organizations(last: Int, first: Int, before: String, after: String): GitHubOrganizationConnection! """ A list of repositories and gists this profile owner can pin to their profile. """ - pinnableItems(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filter the types of pinnable items that are returned. - """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! + pinnableItems( + last: Int + first: Int + before: String + after: String + types: [GitHubPinnableItemType!] + ): GitHubPinnableItemConnection! """ A list of repositories and gists this profile owner has pinned to their profile """ - pinnedItems(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Filter the types of pinned items that are returned. - """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! + pinnedItems( + last: Int + first: Int + before: String + after: String + types: [GitHubPinnableItemType!] + ): GitHubPinnableItemConnection! """ Returns how many more items this profile owner can pin to their profile. """ @@ -256903,49 +245313,34 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of repositories this user has pinned to their profile """ - pinnedRepositories(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - If non-null, filters repositories according to whether they have been locked - """ 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] """ - 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] """ - Ordering options for repositories returned from the connection - """ 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.") + pinnedRepositories( + last: Int + first: Int + before: String + after: String + isLocked: Boolean + ownerAffiliations: [GitHubRepositoryAffiliation] + affiliations: [GitHubRepositoryAffiliation] + orderBy: GitHubRepositoryOrder + privacy: GitHubRepositoryPrivacy + ): GitHubRepositoryConnection! + @deprecated(reason: "pinnedRepositories will be removed Use ProfileOwner.pinnedItems instead. Removal on 2019-10-01 UTC.") """ Find project by number. """ - project(""" - The project number to find. - """ number: Int!): GitHubProject + project(number: Int!): GitHubProject """ A list of projects under the owner. """ - projects(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - A list of states to filter the projects by. - """ states: [GitHubProjectState!] """ - Query to search projects by, currently only searching by name. - """ search: String """ - Ordering options for projects returned from the connection - """ orderBy: GitHubProjectOrder): GitHubProjectConnection! + projects( + last: Int + first: Int + before: String + after: String + states: [GitHubProjectState!] + search: String + orderBy: GitHubProjectOrder + ): GitHubProjectConnection! """ The HTTP path listing user's projects """ @@ -256957,129 +245352,82 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of public keys associated with this user. """ - publicKeys(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubPublicKeyConnection! + publicKeys(last: Int, first: Int, before: String, after: String): GitHubPublicKeyConnection! """ A list of pull requests associated with this user. """ - pullRequests(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - Ordering options for pull requests returned from the connection. - """ orderBy: GitHubIssueOrder """ - The base ref name to filter the pull requests by. - """ baseRefName: String """ - The head ref name to filter the pull requests by. - """ headRefName: String """ - A list of label names to filter the pull requests by. - """ labels: [String!] """ - A list of states to filter the pull requests by. - """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! + pullRequests( + last: Int + first: Int + before: String + after: String + orderBy: GitHubIssueOrder + baseRefName: String + headRefName: String + labels: [String!] + states: [GitHubPullRequestState!] + ): GitHubPullRequestConnection! """ A list of registry packages under the owner. """ - registryPackages(""" - Filter registry package by whether it is publicly visible - """ publicOnly: Boolean """ - Filter registry package by type (string). - """ registryPackageType: String """ - Filter registry package by type. - """ packageType: GitHubRegistryPackageType """ - Find registry packages in a repository. - """ repositoryId: ID """ - Find registry packages by their names. - """ names: [String] """ - Find registry package by name. - """ name: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ 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.") + registryPackages( + publicOnly: Boolean + registryPackageType: String + packageType: GitHubRegistryPackageType + repositoryId: ID + names: [String] + name: String + last: Int + first: Int + before: String + 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 """ - Find registry package by search query. - """ query: String """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ 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.") + registryPackagesForQuery( + packageType: GitHubRegistryPackageType + query: String + last: Int + first: Int + before: String + 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 """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - If non-null, filters repositories according to whether they have been locked - """ 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] """ - 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] """ - Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ - If non-null, filters repositories according to privacy - """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! + repositories( + isFork: Boolean + last: Int + first: Int + before: String + after: String + isLocked: Boolean + ownerAffiliations: [GitHubRepositoryAffiliation] + affiliations: [GitHubRepositoryAffiliation] + orderBy: GitHubRepositoryOrder + privacy: GitHubRepositoryPrivacy + ): GitHubRepositoryConnection! """ A list of repositories that the user recently contributed to. """ - repositoriesContributedTo(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - If non-null, include only the specified types of contributions. The GitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY] - """ contributionTypes: [GitHubRepositoryContributionType] """ - If true, include user repositories - """ includeUserRepositories: Boolean """ - If non-null, filters repositories according to whether they have been locked - """ isLocked: Boolean """ - Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ - If non-null, filters repositories according to privacy - """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! + repositoriesContributedTo( + last: Int + first: Int + before: String + after: String + contributionTypes: [GitHubRepositoryContributionType] + includeUserRepositories: Boolean + isLocked: Boolean + orderBy: GitHubRepositoryOrder + privacy: GitHubRepositoryPrivacy + ): GitHubRepositoryConnection! """ Find Repository. """ - repository(""" - Name of Repository to find. - """ name: String!): GitHubRepository + repository(name: String!): GitHubRepository """ The HTTP path for this user """ @@ -257087,17 +245435,13 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ Replies this user has saved """ - savedReplies(""" - The field to order saved replies by. - """ orderBy: GitHubSavedReplyOrder """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubSavedReplyConnection + savedReplies( + orderBy: GitHubSavedReplyOrder + last: Int + first: Int + before: String + after: String + ): GitHubSavedReplyConnection """ The GitHub Sponsors listing for this user. """ @@ -257105,49 +245449,35 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ This object's sponsorships as the maintainer. """ - 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 """ - Whether or not to include private sponsorships in the result set - """ includePrivate: Boolean """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubSponsorshipConnection! + sponsorshipsAsMaintainer( + orderBy: GitHubSponsorshipOrder + includePrivate: Boolean + last: Int + first: Int + before: String + after: String + ): GitHubSponsorshipConnection! """ This object's sponsorships as the sponsor. """ - 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 """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubSponsorshipConnection! + sponsorshipsAsSponsor( + orderBy: GitHubSponsorshipOrder + last: Int + first: Int + before: String + after: String + ): GitHubSponsorshipConnection! """ Repositories the user has starred. """ - starredRepositories(""" - Order for connection - """ orderBy: GitHubStarOrder """ - Filters starred repositories to only return repositories owned by the viewer. - """ ownedByViewer: Boolean """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubStarredRepositoryConnection! + starredRepositories( + orderBy: GitHubStarOrder + ownedByViewer: Boolean + last: Int + first: Int + before: String + after: String + ): GitHubStarredRepositoryConnection! """ The user's description of what they're currently doing. """ @@ -257155,19 +245485,14 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created """ - topRepositories(""" - How far back in time to fetch contributed repositories - """ since: String """ - Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder! """ - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String): GitHubRepositoryConnection! + topRepositories( + since: String + orderBy: GitHubRepositoryOrder! + last: Int + first: Int + before: String + after: String + ): GitHubRepositoryConnection! """ Identifies the date and time when the object was last updated. """ @@ -257195,25 +245520,17 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of repositories the given user is watching. """ - watching(""" - Returns the last _n_ elements from the list. - """ last: Int """ - Returns the first _n_ elements from the list. - """ first: Int """ - Returns the elements in the list that come before the specified cursor. - """ before: String """ - Returns the elements in the list that come after the specified cursor. - """ after: String """ - If non-null, filters repositories according to whether they have been locked - """ 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] """ - 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] """ - Ordering options for repositories returned from the connection - """ orderBy: GitHubRepositoryOrder """ - If non-null, filters repositories according to privacy - """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! + watching( + last: Int + first: Int + before: String + after: String + isLocked: Boolean + ownerAffiliations: [GitHubRepositoryAffiliation] + affiliations: [GitHubRepositoryAffiliation] + orderBy: GitHubRepositoryOrder + privacy: GitHubRepositoryPrivacy + ): GitHubRepositoryConnection! """ A URL pointing to the user's public website/blog. """ @@ -257224,18 +245541,13 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu See the [email address endpoint documentation](https://developer.github.com/v3/users/emails/#list-email-addresses-for-a-user) for more details. """ - emailsIfIsViewer_oneGraph(""" - Only include the GitHub has considers to be the primary email for this user - """ 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.*") + emailsIfIsViewer_oneGraph(onlyPrimary: Boolean, onlyVerified: Boolean): [GitHubUserEmail_oneGraph!] + @deprecated(reason: "*Temporary field until GitHub implemements their own `emailsIfIsViewer` field for a user.*") """ Linked Salesforce User """ salesforceUser: SalesforceUser - oneGraphLinkedNodes(""" - Filter the connected nodes that are returned by service or typename. - """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -257870,9 +246182,7 @@ type SpotifyCurrentUserProfile { """ uri: String playlists(limit: Int): [SpotifyPlaylist!] - player(""" - [Get information about the user’s current playback state, including track, track progress, and active device.](https://developer.spotify.com/documentation/web-api/reference/player/get-information-about-the-users-current-playback/) - """ market: String): SpotifyPlayer + player(market: String): SpotifyPlayer } """ @@ -258520,9 +246830,7 @@ type TrelloOrganization { """ website: String actions: TrelloActionsConnection - boards(""" - Filter boards. Add multiple filters to include boards that pass any of the fitlers - """ filters: [TrelloBoardFilterEnumArg!]): TrelloBoardsConnection + boards(filters: [TrelloBoardFilterEnumArg!]): TrelloBoardsConnection members: [TrelloMember!] } @@ -259561,15 +247869,11 @@ type TrelloBoard { """ Labels for a board """ - labels(""" - Number of labels to fetch. Defaults to 50. - """ limit: Int): TrelloLabelsConnection + labels(limit: Int): TrelloLabelsConnection """ Power-ups for a board """ - plugins(""" - Get either enabled or available power-ups. Defaults to enabled. - """ filter: TrelloPluginFilterEnumArg): TrelloPluginsConnection + plugins(filter: TrelloPluginFilterEnumArg): TrelloPluginsConnection """ Custom Fields are extra bits of structured data attached to cards when our users need a bit more than what Trello provides. """ @@ -259841,9 +248145,7 @@ type TrelloMember { enterpriseMemberships: TrelloEnterpriseMembershipsConnection organizations: TrelloOrganizationsConnection actions: TrelloActionsConnection - boards(""" - Filter boards. Add multiple filters to include boards that pass any of the fitlers - """ filters: [TrelloBoardFilterEnumArg!]): TrelloBoardsConnection + boards(filters: [TrelloBoardFilterEnumArg!]): TrelloBoardsConnection cards: TrelloCardsConnection } @@ -260662,7 +248964,8 @@ type OneGraphServicesMetadata { logdna: OneGraphServiceMetadata! mixpanel: OneGraphServiceMetadata! onegraph: OneGraphServiceMetadata! - facebook: OneGraphServiceMetadata! @deprecated(reason: "Use facebookBusiness.") + facebook: OneGraphServiceMetadata! + @deprecated(reason: "Use facebookBusiness.") } """ @@ -260922,539 +249225,249 @@ 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 } type Query { - me(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): Viewer! + me(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): Viewer! """ The root for Airtable queries """ - airtable(""" - 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 """ - 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.") + airtable(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): AirtableQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Box queries """ - box(""" - 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 """ - 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.") + box(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): BoxQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Bundlephobia queries """ - bundlephobia(""" - 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 """ - 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.") + bundlephobia(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): BundlephobiaQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Clearbit queries """ - clearbit(""" - 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 """ - 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.") + clearbit(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): Clearbit! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Cloudflare queries """ - cloudflare(""" - 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 """ - 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.") + cloudflare(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): CloudflareQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Contentful queries """ - contentful(""" - 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 """ - 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.") + contentful(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): ContentfulQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Dev.to queries """ - devTo(""" - 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 """ - 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.") + devTo(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): DevToQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Dribbble queries """ - dribbble(""" - 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 """ - 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.") + dribbble(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): DribbbleQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Dropbox queries """ - dropbox(""" - 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 """ - 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.") + dropbox(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): DropboxQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Egghead.io queries """ - eggheadio(""" - 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 """ - 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.") + eggheadio(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): EggheadioQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Facebook queries """ - facebookBusiness(""" - 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 """ - 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.") + facebookBusiness(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): FacebookBusinessQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Fedex queries """ - fedex(""" - 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 """ - 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.") + fedex(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): FedexQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Google queries """ - google(""" - 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 """ - 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.") + google(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): GoogleServices! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Hubspot queries """ - hubspot(""" - 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 """ - 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.") + hubspot(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): HubspotQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Intercom queries """ - intercom(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): IntercomQuery! + intercom(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): IntercomQuery! """ The root for LogDNA queries """ - logdna(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): LogdnaQuery! + logdna(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): LogdnaQuery! """ The root for Mailchimp queries """ - mailchimp(""" - 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 """ - 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.") + mailchimp(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): MailchimpQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Meetup queries """ - meetup(""" - 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 """ - 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.") + meetup(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): MeetupQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Mixpanel queries """ - mixpanel(""" - 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 """ - 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.") + mixpanel(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): MixpanelQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Netlify queries """ - netlify(""" - 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 """ - 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.") + netlify(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): NetlifyQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Npm queries """ - npm(""" - 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 """ - 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.") + npm(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): NpmQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Salesforce queries """ - salesforce(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): SalesforceQuery! + salesforce(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): SalesforceQuery! """ The root for Slack queries """ - slack(""" - 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 """ - 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.") + slack(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): Slack! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Spotify queries """ - spotify(""" - 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 """ - 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.") + spotify(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): SpotifyQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Stripe queries """ - stripe(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): StripeQuery! + stripe(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): StripeQuery! """ The root for Trello queries """ - trello(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): TrelloQuery! + trello(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): TrelloQuery! """ The root for Twilio queries """ - twilio(""" - 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 """ - 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.") + twilio(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): TwilioQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Twitch queries """ - twitchTv(""" - 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 """ - 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.") + twitchTv(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): TwitchTvQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Twitter queries """ - twitter(""" - 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 """ - 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.") + twitter(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): Twitter! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for UPS queries """ - ups(""" - 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 """ - 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.") + ups(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): UpsQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for USPS queries """ - usps(""" - 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 """ - 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.") + usps(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): USPSQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for YouTube queries """ - youTube(""" - 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 """ - 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.") + youTube(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): YouTubeQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Zeit queries """ - zeit(""" - 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 """ - 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.") + zeit(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): ZeitQuery! + @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.") """ The root for Zendesk queries """ - zendesk(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): ZendeskQuery! - quickbooks(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): QuickbooksQuery - immigrationGraph(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): ImmigrationGraphQuery - crunchbase(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): CrunchbaseQuery - brex(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): BrexRootQueryType - gitHub(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): GitHubQuery - productHunt(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): ProductHuntQuery - eventil(""" - 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 """ - Optional OAuth tokens used to execute the query - """ auths: OneGraphServiceAuths): EventilQuery + zendesk(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): ZendeskQuery! + quickbooks(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): QuickbooksQuery + immigrationGraph(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): ImmigrationGraphQuery + crunchbase(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): CrunchbaseQuery + brex(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): BrexRootQueryType + gitHub(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): GitHubQuery + productHunt(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): ProductHuntQuery + eventil(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): EventilQuery oneGraph: OneGraphServiceQuery! """ Fetches an object given its globally unique `oneGraphId`. """ - 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 """ - 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.") + oneGraphNode(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 + 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! """ - 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 """ - 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.") + emailNode( + email: String! + userIds: OneGraphServiceUserIds + 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..81dde697aeb 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 @@ -12,10 +12,8 @@ type Foo implements Bar & Baz { """ This is a description of the `two` field. """ - two_abc(""" - This is a description of the `argument` argument. - """ argument: InputType!): Type - three_abc(argument: InputType other: String): Int + two_abc(argument: InputType!): Type + three_abc(argument: InputType, other: String): Int four_abc(argument: String = "string"): String five_abc(argument: [String] = [ "string", 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/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; From 445bb54753da7f93296d301fad70d83d8a668b8f Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Wed, 8 Apr 2026 10:13:13 +0000 Subject: [PATCH 2/8] updated snapshots --- ...CertificationTests.Schema_Snapshot.graphql | 15 +- .../CertificationTests.Subgraph_SDL.snap | 15 +- ...CertificationTests.Schema_Snapshot.graphql | 15 +- .../CertificationTests.Subgraph_SDL.snap | 15 +- ....ExportDirectiveUsingNameCodeFirst.graphql | 12 +- ....ExportDirectiveUsingTypeCodeFirst.graphql | 12 +- ...ExternalToTypeFieldAnnotationBased.graphql | 10 +- ...notateExternalToTypeFieldCodeFirst.graphql | 10 +- ...KeyToClassAttributeAnnotationBased.graphql | 10 +- ...eyToClassAttributesAnnotationBased.graphql | 10 +- ...InterfaceAttributesAnnotationBased.graphql | 13 +- ...nnotateKeyToInterfaceTypeCodeFirst.graphql | 10 +- ...tateKeyToObjectTypeAnnotationBased.graphql | 10 +- ...s.AnnotateKeyToObjectTypeCodeFirst.graphql | 10 +- ...KeyToClassAttributeAnnotationBased.graphql | 10 +- ...eyToClassAttributesAnnotationBased.graphql | 10 +- ...InterfaceAttributesAnnotationBased.graphql | 13 +- ...nnotateKeyToInterfaceTypeCodeFirst.graphql | 10 +- ...tateKeyToObjectTypeAnnotationBased.graphql | 10 +- ...s.AnnotateKeyToObjectTypeCodeFirst.graphql | 10 +- ...iveTests.OverrideDirective_Annotation.snap | 10 +- ...rrideDirective_Progressive_Annotation.snap | 12 +- ...ive_GetsAddedCorrectly_Annotations.graphql | 14 +- ...ives_GetAddedCorrectly_Annotations.graphql | 14 +- ...ctives_GetAddedCorrectly_CodeFirst.graphql | 14 +- ...videsToClassAttributePureCodeFirst.graphql | 10 +- ...s.AnnotateProvidesToFieldCodeFirst.graphql | 10 +- ...videsToClassAttributePureCodeFirst.graphql | 10 +- ...s.AnnotateProvidesToFieldCodeFirst.graphql | 10 +- ...ive_GetsAddedCorrectly_Annotations.graphql | 14 +- ...ives_GetAddedCorrectly_Annotations.graphql | 14 +- ...ctives_GetAddedCorrectly_CodeFirst.graphql | 19 +- .../ServiceTypeTests.cs | 20 +- ...sts.Ensure_PagingInfo_Is_Shareable.graphql | 15 +- ..._When_Shareable_Already_Registered.graphql | 15 +- ...ctiveTests.FieldAuth_DefaultPolicy.graphql | 6 +- ...ldAuth_DefaultPolicy_AfterResolver.graphql | 6 +- ...dAuth_DefaultPolicy_BeforeResolver.graphql | 6 +- ...FieldAuth_DefaultPolicy_Validation.graphql | 6 +- ...irectiveTests.FieldAuth_WithPolicy.graphql | 6 +- ...FieldAuth_WithPolicy_AfterResolver.graphql | 6 +- ...ieldAuth_WithPolicy_BeforeResolver.graphql | 6 +- ...ts.FieldAuth_WithPolicy_Validation.graphql | 6 +- ...DirectiveTests.FieldAuth_WithRoles.graphql | 6 +- ...ectiveTests.TypeAuth_DefaultPolicy.graphql | 6 +- ...DirectiveTests.TypeAuth_WithPolicy.graphql | 6 +- ...eDirectiveTests.TypeAuth_WithRoles.graphql | 6 +- ...aMiddlewareTests.Download_GraphQL_SDL.snap | 64 +- ...s.Download_GraphQL_SDL_Explicit_Route.snap | 64 +- ...L_SDL_Explicit_Route_Explicit_Pattern.snap | 64 +- ...MiddlewareTests.Download_GraphQL_Schema.md | 64 +- ...oad_GraphQL_Schema_Slicing_Args_Enabled.md | 64 +- ...ewareTests.Download_GraphQL_Types_SDL.snap | 4 +- ...GraphQL_Types_SDL_Character_and_Query.snap | 11 +- .../Caching/test/Caching.Tests/SchemaTests.cs | 8 +- ...ptorTests.DataResolvers_ApplyDefaults.snap | 68 +- ..._ApplyDefaults_DifferentDefaultMaxAge.snap | 68 +- ...s_ApplyDefaults_DifferentDefaultScope.snap | 70 +- ...sts.DataResolvers_ApplyDefaults_False.snap | 66 +- ...s.DataResolvers_CacheControl_Disabled.snap | 66 +- ...ceptorTests.QueryFields_ApplyDefaults.snap | 8 +- ..._ApplyDefaults_DifferentDefaultMaxAge.snap | 8 +- ...s_ApplyDefaults_DifferentDefaultScope.snap | 8 +- ...Tests.QueryFields_ApplyDefaults_False.snap | 8 +- ...sts.QueryFields_CacheControl_Disabled.snap | 8 +- ...nTests.Authorize_Node_Field_Schema.graphql | 32 +- ...sts.Authorize_Apply_Can_Be_Omitted.graphql | 13 +- .../StarWarsCodeFirstTests.Schema.snap | 27 +- ...sts.CompositeType_SelectionsSet_Empty.snap | 14 +- ...itional_Fragment_Has_Additional_Field.snap | 3 +- ...tionCompilerTests.Crypto_Details_Test.snap | 17 +- ...t_Removes_Conditional_State_For_Price.snap | 3 +- ...OperationCompilerTests.Crypto_Include.snap | 3 +- ...erationCompilerTests.Crypto_List_Test.snap | 99 +- ...erent_Branches_Non_Overlapping_Levels.snap | 6 +- ...r_Multiple_Levels_Field_Deduplication.snap | 9 +- ...ested_With_Parent_Field_Deduplication.snap | 12 +- ...fer_Three_Fragments_Overlapping_Paths.snap | 111 +- ...nCompilerTests.Field_Based_Optimizers.snap | 5 +- ...sible_When_One_Selection_Is_Visible_1.snap | 8 +- ...sible_When_One_Selection_Is_Visible_2.snap | 8 +- ...sible_When_One_Selection_Is_Visible_3.snap | 10 +- ...sible_When_One_Selection_Is_Visible_4.snap | 8 +- ...ts.FragmentSpread_SelectionsSet_Empty.snap | 10 +- ...ts.InlineFragment_SelectionsSet_Empty.snap | 10 +- ...erationCompilerTests.Large_Query_Test.snap | 795 +- ...erationCompilerTests.Nested_Fragments.snap | 96 +- ...ests.Nested_Fragments_with_Conditions.snap | 96 +- ...eld_Visibility_Is_Correctly_Inherited.snap | 8 +- ...d_Visibility_Is_Correctly_Inherited_2.snap | 10 +- ...d_Visibility_Is_Correctly_Inherited_3.snap | 14 +- ...perationCompilerTests.Reuse_Selection.snap | 18 +- .../IntegrationTests.Schema_Snapshot.snap | 33 +- .../IntegrationTests.Schema.graphql | 30 +- ...hema_Correctly_When_Connection_IsUsed.snap | 9 +- ...dge_Type_And_Inject_Edge_Value_Schema.snap | 9 +- ...actoryTypeReference_For_Connection.graphql | 21 +- ...actoryTypeReference_For_Enumerable.graphql | 21 +- ...ribute_Interface_With_Paging_Field.graphql | 28 +- ...Attribute_Simple_StringList_Schema.graphql | 21 +- ...ests.Deactivate_BackwardPagination.graphql | 25 +- ...ivate_BackwardPagination_Interface.graphql | 20 +- ..._Explicit_Backward_Paging_Fields_Work.snap | 5 +- ...ationTests.Explicit_ConnectionName.graphql | 21 +- ...nnectionName_With_NamingConvention.graphql | 21 +- ...ationTests.IncludeNodesField_False.graphql | 35 +- ...ts.Infer_ConnectionName_From_Field.graphql | 7 +- ...rom_NodeType_With_NamingConvention.graphql | 7 +- ...nTests.Interface_With_Paging_Field.graphql | 28 +- ...tionTests.Simple_StringList_Schema.graphql | 35 +- ...ts.Ensure_Attributes_Are_Applied_Once.snap | 9 +- ...eTests.UsePagingAttribute_Infer_Types.snap | 9 +- ...ingAttribute_Infer_Types_On_Interface.snap | 9 +- ...ingAttribute_On_Extension_Infer_Types.snap | 9 +- ...rrectly_When_CollectionSegment_IsUsed.snap | 4 +- ...y_ReturnType_ThrowsSchemaException.graphql | 2 +- ...Attribute_Interface_With_Paging_Field.snap | 10 +- ...ts.Attribute_Simple_StringList_Schema.snap | 8 +- ...tionTests.Interface_With_Paging_Field.snap | 10 +- ...grationTests.Simple_StringList_Schema.snap | 12 +- ..._Query_With_FieldResult_And_Paging.graphql | 18 +- ..._Query_With_FieldResult_And_Paging.graphql | 18 +- ...ts.FactoryTypeReference_Is_Handled.graphql | 4 +- .../TypeDiscoveryTests.InferDateTime.snap | 7 +- ...DiscoveryTests.InferDateTimeFromModel.snap | 17 +- ...sts.TypeDiscovery_Should_InferStructs.snap | 10 +- ...ecutable_Directives_Should_Be_Visited.snap | 7 +- .../Types/Composite/LookupTests.cs | 3 +- ...ializeAsTests.SerializeAs_Is_Added.graphql | 5 +- ...Tests.New_On_PageInfo_Is_Shareable.graphql | 7 +- ...ew_On_PageInfo_Is_Shareable_Fluent.graphql | 7 +- ...areableTests.PageInfo_Is_Shareable.graphql | 7 +- ...Tests.PageInfo_Is_Shareable_Fluent.graphql | 7 +- ...emaAsync_CodeFirst_MatchesSnapshot.graphql | 9 +- ...aAsync_SchemaFirst_MatchesSnapshot.graphql | 9 +- ...emaAsync_CodeFirst_MatchesSnapshot.graphql | 14 +- ...mplementationFirst_MatchesSnapshot.graphql | 14 +- ...aAsync_SchemaFirst_MatchesSnapshot.graphql | 14 +- ...ureSpecifiedByDirectiveExistsInSdl.graphql | 7 +- ...Tests.EnsureAllLocationsAreApplied.graphql | 6 +- ...teTests.Id_Type_Is_Correctly_Inferred.snap | 7 +- .../Types.Tests/Types/Scalars/AnyTypeTests.cs | 4 +- ...TypeTests.DateOnly_As_Argument_Schema.snap | 7 +- ...eTests.DateOnly_As_ReturnValue_Schema.snap | 7 +- ...tionFirst_AutomaticallyBinds_TimeSpan.snap | 7 +- ...ary_String_Object_Output_Field_Builds.snap | 4 +- ...ests.LocalDateTime_As_Argument_Schema.snap | 7 +- ...s.LocalDateTime_As_ReturnValue_Schema.snap | 7 +- ...TypeTests.DateOnly_As_Argument_Schema.snap | 7 +- ...eTests.DateOnly_As_ReturnValue_Schema.snap | 7 +- ...TypeTests.TimeOnly_As_Argument_Schema.snap | 7 +- ...eTests.TimeOnly_As_ReturnValue_Schema.snap | 7 +- ...ema_With_All_Possible_Descriptions.graphql | 10 +- ...ectives_Are_Not_Removed_Without_Usage.snap | 2 +- ...Deprecated_NullableArguments_Valid.graphql | 6 +- ...ive_Argument_Defaults_From_Properties.snap | 2 +- ....CreateObjectTypeWithXmlDocumentation.snap | 2 +- ...peTests.Infer_Argument_Default_Values.snap | 4 +- ...Attribute_Schema_Is_Generated_Correctly.md | 4 +- ...oryTests.CreateObjectTypeDescriptions.snap | 2 +- ...ts.Change_DefaultBinding_For_DateTime.snap | 10 +- ...rSchemaWithNonNullRefTypesAndGenerics.snap | 9 +- ...First_NamingConvention_RenameArgument.snap | 10 +- ...vention_RenameArgument_RequestBuilder.snap | 10 +- ...Tests.SchemaFirst_Cursor_OffsetPaging.snap | 4 +- ...aFirstTests.SchemaFirst_Cursor_Paging.snap | 9 +- ...chemaFirst_Cursor_Paging_With_Objects.snap | 9 +- ...hemaFirst_Cursor_Paging_With_Resolver.snap | 9 +- ...SchemaWithMutationWithoutSubscription.snap | 2 +- .../SemanticNonNullTests.Pagination.snap | 9 +- ...faultWeights_RemovesCostDirectives.graphql | 6 +- ...eights_DoesNotRemoveCostDirectives.graphql | 10 +- .../PagingTests.Do_Not_Apply_Defaults.graphql | 39 +- ...ult_Page_Size_When_Default_Is_Specified.md | 60 +- ...Ensure_Paging_Defaults_Are_Applied.graphql | 60 +- .../PagingTests.Filtering_Variable.md | 4 +- ...oundaries_Single_Boundary_With_Variable.md | 4 +- ..._Paging_Boundaries_Two_Boundaries_Mixed.md | 4 +- ...Boundaries_Two_Boundaries_With_Variable.md | 5 +- ...ult_Page_Size_When_Default_Is_Specified.md | 60 +- ...faultWeights_RemovesCostDirectives.graphql | 6 +- ...eights_DoesNotRemoveCostDirectives.graphql | 10 +- ...alue_Inferred_From_DefaultPageSize.graphql | 16 +- ..._HasPrecedenceOver_DefaultPageSize.graphql | 16 +- ...s.Infer_Schema_From_IQueryable_Fields.snap | 44 +- ...er_Schema_From_IQueryable_Task_Fields.snap | 30 +- ...hema_From_IQueryable_ValueTask_Fields.snap | 30 +- ...oaderTests.Filter_With_Multi_Expression.md | 25 +- ...parable_Filter_Type_With_Attribute.graphql | 7 +- ...te_Enum_Filter_Type_With_Attribute.graphql | 7 +- ...putTests.Create_Implicit_Operation.graphql | 22 +- ...eate_Implicit_Operation_Normalized.graphql | 22 +- ...putTests.Create_Implicit_Operation.graphql | 13 +- ...putTests.Create_Explicit_Operation.graphql | 7 +- ...putTests.Create_Implicit_Operation.graphql | 7 +- ...reate_Schema_With_FilterAttributes.graphql | 7 +- ...sts.Create_Schema_With_FilterInput.graphql | 7 +- .../IntegrationTests.CreateSchema.graphql | 87 +- ....Create_Schema_With_SortAttributes.graphql | 7 +- ...onTests.CreateSchema_OnDifferentScope.snap | 9 +- ...hen_AliasIsSameAsAlwaysProjectedField.snap | 9 +- ...ontainsProjectedField_With_Extensions.snap | 9 +- .../IntegrationTests.Execute_And_OnRoot.snap | 9 +- ...ationTests.Execute_And_OnRoot_Reverse.snap | 9 +- ...nsionWithOffsetPagingOnStaticResolver.snap | 2 +- ...ts.Interface_Field_Schema_Snapshot.graphql | 18 +- ...sts.GetDefaultPage_With_Deep_SecondPage.md | 2 +- ...grationTests.GetSecondPage_With_2_Items.md | 2 +- ...grationTests.Paging_First_5_After_Id_13.md | 2 +- ...rationTests.Paging_First_5_Before_Id_96.md | 2 +- ...rectlyOrderedMiddlewarePassValidation.snap | 9 +- ...RequestDetails_All_IncludesAllDetails.snap | 2 +- .../AbstractTypeTests.Abstract_Type.yaml | 7 +- ...stract_Type_Direct_Source_Schema_Call.yaml | 7 +- ...ts.Abstract_Type_With_Abstract_Lookup.yaml | 15 +- ...ts.Abstract_Type_With_Concrete_Lookup.yaml | 15 +- ...ts.Concrete_Type_With_Abstract_Lookup.yaml | 15 +- ...ype_Refinements_With_Concrete_Lookups.yaml | 12 +- ...ookups_And_Field_From_Specific_Source.yaml | 12 +- ...ype_Refinements_With_Interface_Lookup.yaml | 8 +- ...Lookup_And_Field_From_Specific_Source.yaml | 8 +- ...tractTypeTests.List_Of_Abstract_Types.yaml | 7 +- ...Type_Refinements_And_Concrete_Lookups.yaml | 12 +- ...s_With_Additional_Concrete_Dependency.yaml | 20 +- ...ith_Type_Refinements_And_Union_Lookup.yaml | 12 +- ...p_With_Additional_Concrete_Dependency.yaml | 20 +- ...Tests.Handle_Any_Scalar_ComplexNested.yaml | 13 +- ...AnyScalarTests.Handle_Any_Scalar_List.yaml | 13 +- ...Tests.Handle_Any_Scalar_ListOfObjects.yaml | 13 +- ...rTests.Handle_Any_Scalar_NestedObject.yaml | 13 +- ...alarTests.Handle_Any_Scalar_NullValue.yaml | 13 +- ...yScalarTests.Handle_Any_Scalar_Object.yaml | 13 +- ...sts.Handle_Any_Scalar_ObjectWithLists.yaml | 13 +- ...rTests.Handle_Any_Scalar_SimpleValues.yaml | 13 +- ...s.Ensure_String_Literals_Can_Be_Empty.yaml | 14 +- ....Ensure_String_Variables_Can_Be_Empty.yaml | 30 +- ...reTests.Fetch_Book_From_SourceSchema1.yaml | 14 +- ...Schema1_And_Author_From_SourceSchema2.yaml | 22 +- ..._Book_From_SourceSchema1_Two_Requests.yaml | 14 +- ...Book_From_SourceSchema1_With_Settings.yaml | 14 +- ...chema1_And_Authors_From_SourceSchema2.yaml | 22 +- ...ks_With_Requirements_To_SourceSchema1.yaml | 24 +- ...irements_To_SourceSchema1_Three_Times.yaml | 24 +- ...Requirements_To_SourceSchema1_X_Times.yaml | 24 +- ...ks_With_Variable_First_And_First_Is_1.yaml | 38 +- ...With_Variable_First_And_First_Omitted.yaml | 38 +- ...rst_Last_And_First_1_And_Last_Omitted.yaml | 42 +- ...Tests.Introspection_Skip_Around_Field.yaml | 8 +- ...onalTests.Introspection_Skip_On_Field.yaml | 8 +- ..._Around_Fields_Fetched_Through_Lookup.yaml | 24 +- ...ough_Lookup_And_On_Same_Source_Schema.yaml | 24 +- ...eld_With_Requirement_With_Other_Field.yaml | 29 +- ..._Around_Fields_Fetched_Through_Lookup.yaml | 20 +- ...ip_Not_Only_On_Field_With_Requirement.yaml | 25 +- ..._Skip_On_Field_Fetched_Through_Lookup.yaml | 12 +- ...Lookup_Skip_On_Field_With_Requirement.yaml | 17 +- ...Field_Of_Field_Fetched_Through_Lookup.yaml | 20 +- ...On_Some_Fields_Fetched_Through_Lookup.yaml | 18 +- ...Multiple_Skip_Levels_Around_NodeField.yaml | 10 +- ...Skip_Around_Interface_Type_Refinement.yaml | 24 +- ...Skip_Around_Multiple_Type_Refinements.yaml | 20 +- ...Tests.NodeField_Skip_Around_NodeField.yaml | 8 +- ...deField_Skip_Around_Shared_Selections.yaml | 20 +- ...NodeField_Skip_On_Interface_Selection.yaml | 20 +- ...inement_With_Same_Unskipped_Selection.yaml | 28 +- ...eld_Skip_On_Interface_Type_Refinement.yaml | 20 +- ...onalTests.NodeField_Skip_On_NodeField.yaml | 8 +- ..._Skip_On_Selection_In_Type_Refinement.yaml | 16 +- ...ts.NodeField_Skip_On_Shared_Selection.yaml | 20 +- ...sts.NodeField_Skip_On_Type_Refinement.yaml | 16 +- ..._Fields_From_Different_Source_Schemas.yaml | 10 +- ..._Fields_From_Different_Source_Schemas.yaml | 8 +- ...p_Around_Fields_Of_Same_Source_Schema.yaml | 8 +- .../ConditionalTests.Root_Skip_On_Field.yaml | 8 +- ..._Fields_From_Different_Source_Schemas.yaml | 8 +- ..._On_Some_Fields_Of_Same_Source_Schema.yaml | 16 +- ...ltiple_Skip_Levels_Around_Entry_Field.yaml | 10 +- ...evels_Around_Fields_Below_Entry_Field.yaml | 20 +- ...lTests.SharedPath_Skip_On_Entry_Field.yaml | 8 +- ...dPath_Skip_On_Field_Below_Entry_Field.yaml | 16 +- .../FileUploadTests.Upload_List_Of_Files.yaml | 15 +- ....Upload_List_Of_Files_In_Input_Object.yaml | 15 +- ..._List_Of_Files_In_Input_Object_Inline.yaml | 15 +- .../FileUploadTests.Upload_Single_File.yaml | 15 +- ...ts.Upload_Single_File_In_Input_Object.yaml | 15 +- ...ad_Single_File_In_Input_Object_Inline.yaml | 15 +- ...nTests.Concrete_Type_Branch_Requested.yaml | 8 +- ...eld_Alongside_Regular_Root_Selections.yaml | 20 +- ...de_Field_Concrete_Type_Has_Dependency.yaml | 28 +- ...oncrete_Type_Selection_Has_Dependency.yaml | 28 +- ...ts.Node_Field_Selections_On_Interface.yaml | 24 +- ...ctions_On_Interface_And_Concrete_Type.yaml | 24 +- ...Type_Both_Have_Different_Dependencies.yaml | 44 +- ...ncrete_Type_Both_Have_Same_Dependency.yaml | 36 +- ...On_Interface_Selection_Has_Dependency.yaml | 36 +- ...elections_Have_Different_Dependencies.yaml | 36 +- ...Types_Selections_Have_Same_Dependency.yaml | 36 +- ...ificationTests.Only_Typename_Selected.yaml | 16 +- ...ationTests.Two_Node_Fields_With_Alias.yaml | 8 +- ...le_Fields_Can_Be_Used_As_Requirements.yaml | 8 +- ...tionTests.Recursive_Input_Object_Type.yaml | 16 +- ...ete_Type_Linked_Field_With_Dependency.yaml | 8 +- ...e_Field_Concrete_Type_With_Dependency.yaml | 8 +- ...ce_Field_Linked_Field_With_Dependency.yaml | 8 +- ..._Different_Selection_In_Concrete_Type.yaml | 16 +- ...dency_Same_Selection_In_Concrete_Type.yaml | 8 +- ...ete_Type_Linked_Field_With_Dependency.yaml | 8 +- ...t_Field_Concrete_Type_With_Dependency.yaml | 8 +- ...st_Field_Linked_Field_With_Dependency.yaml | 8 +- ..._Different_Selection_In_Concrete_Type.yaml | 16 +- ...dency_Same_Selection_In_Concrete_Type.yaml | 8 +- ...ete_Type_Linked_Field_With_Dependency.yaml | 8 +- ...roperty_Concrete_Type_With_Dependency.yaml | 8 +- ...Property_Linked_Field_With_Dependency.yaml | 8 +- ..._Different_Selection_In_Concrete_Type.yaml | 16 +- ...dency_Same_Selection_In_Concrete_Type.yaml | 8 +- ...IntrospectionTests.Download_Schema.graphql | 14 +- ...spectionTests.Fetch_Schema_Types_Name.yaml | 14 +- ...ntrospectionTests.Fetch_Specific_Type.yaml | 14 +- ...ionQueries_DirectiveCapabilitiesQuery.yaml | 6 +- ...onQueries_InputValueCapabilitiesQuery.yaml | 6 +- ...trospectionQueries_IntrospectionQuery.yaml | 6 +- ...ectionQueries_SchemaCapabilitiesQuery.yaml | 6 +- ...spectionQueries_TypeCapabilitiesQuery.yaml | 6 +- ...Tests.Typename_On_Introspection_Types.yaml | 6 +- ...IntrospectionTests.Typename_On_Object.yaml | 14 +- ...onTests.Typename_On_Object_With_Alias.yaml | 14 +- .../IntrospectionTests.Typename_On_Query.yaml | 14 +- ...ionTests.Typename_On_Query_Skip_False.yaml | 22 +- ...tionTests.Typename_On_Query_Skip_True.yaml | 22 +- ...ionTests.Typename_On_Query_With_Alias.yaml | 14 +- ...sts.Fetch_From_Nested_Internal_Lookup.yaml | 8 +- ...ookupTests.Fetch_OneOf_Lookup_With_Id.yaml | 12 +- ...kupTests.Fetch_OneOf_Lookup_With_Name.yaml | 12 +- .../MutationTests.Multiple_Mutation.yaml | 8 +- .../MutationTests.Single_Mutation.yaml | 8 +- ...quireTests.Require_Enumerable_In_List.yaml | 21 +- ...RequireTests.Require_Object_In_A_List.yaml | 19 +- ...equireTests.Requirement_On_Leaf_Field.yaml | 30 +- ...On_Nullable_Leaf_Field_Returning_Null.yaml | 30 +- ...nt_On_Property_Within_Nullable_Object.yaml | 30 +- ...Within_Nullable_Object_Returning_Null.yaml | 30 +- ..._Parent_Fields_Below_Type_With_Lookup.yaml | 8 +- ...kup_With_Extra_Fields_On_Shared_Level.yaml | 16 +- ...up_With_Extra_Fields_On_Shared_Levels.yaml | 24 +- ...d_Parent_Field_Below_Type_With_Lookup.yaml | 8 +- ...kup_With_Extra_Fields_On_Shared_Level.yaml | 16 +- ...Type_With_Lookup_With_Type_Refinement.yaml | 8 +- ...Inline_Fragment_Without_TypeCondition.yaml | 16 +- ...Tests.BatchRequest_CustomAcceptHeader.yaml | 8 +- ...ests.BatchRequest_OnlyRequestBatching.yaml | 12 +- ...equestBatching_ServerReturnsJsonArray.yaml | 52 +- ...atching_ServerReturnsNoRequestIndices.yaml | 52 +- ...sts.BatchRequest_OnlyVariableBatching.yaml | 8 +- ...Batch_BatchRequest_CustomAcceptHeader.yaml | 16 +- ...atch_BatchRequest_OnlyRequestBatching.yaml | 24 +- ...equestBatching_ServerReturnsJsonArray.yaml | 116 +- ...atching_ServerReturnsNoRequestIndices.yaml | 116 +- ...tch_BatchRequest_OnlyVariableBatching.yaml | 16 +- ..._On_Lookup_Field_In_List_OnError_Null.yaml | 8 +- ...ookup_Field_In_List_OnError_Propagate.yaml | 8 +- ...ts.Error_On_Lookup_Field_OnError_Null.yaml | 8 +- ...ror_On_Lookup_Field_OnError_Propagate.yaml | 8 +- ...kup_Leaf_In_List_NonNull_OnError_Null.yaml | 8 +- ...eaf_In_List_NonNull_OnError_Propagate.yaml | 8 +- ...r_On_Lookup_Leaf_In_List_OnError_Null.yaml | 8 +- ...Lookup_Leaf_In_List_OnError_Propagate.yaml | 8 +- ...r_On_Lookup_Leaf_NonNull_OnError_Null.yaml | 8 +- ...Lookup_Leaf_NonNull_OnError_Propagate.yaml | 8 +- ...sts.Error_On_Lookup_Leaf_OnError_Null.yaml | 8 +- ...rror_On_Lookup_Leaf_OnError_Propagate.yaml | 8 +- ...For_Lookup_Field_NonNull_OnError_Null.yaml | 8 +- ...ookup_Field_NonNull_OnError_Propagate.yaml | 8 +- ..._For_Lookup_Leaf_NonNull_OnError_Null.yaml | 8 +- ...Lookup_Leaf_NonNull_OnError_Propagate.yaml | 8 +- ...For_Lookup_Field_NonNull_OnError_Null.yaml | 8 +- ...ookup_Field_NonNull_OnError_Propagate.yaml | 8 +- ...Fails_For_Lookup_NonNull_OnError_Null.yaml | 8 +- ..._For_Lookup_NonNull_OnError_Propagate.yaml | 8 +- ...Request_Fails_For_Lookup_OnError_Null.yaml | 8 +- ...st_Fails_For_Lookup_OnError_Propagate.yaml | 8 +- ...r_Lookup_On_List_NonNull_OnError_Null.yaml | 8 +- ...kup_On_List_NonNull_OnError_Propagate.yaml | 8 +- ...Fails_For_Lookup_On_List_OnError_Null.yaml | 8 +- ..._For_Lookup_On_List_OnError_Propagate.yaml | 8 +- ...nsOverHttpStoreTests.Subscribe_Simple.yaml | 8 +- ...on_Field_Concrete_Type_Has_Dependency.yaml | 8 +- ...oncrete_Type_Selection_Has_Dependency.yaml | 12 +- ...ions_Have_Dependency_To_Same_Subgraph.yaml | 12 +- ..._Type_Selections_Have_Same_Dependency.yaml | 8 +- ...ion_List_Concrete_Type_Has_Dependency.yaml | 8 +- ...oncrete_Type_Selection_Has_Dependency.yaml | 16 +- ...ions_Have_Dependency_To_Same_Subgraph.yaml | 16 +- ..._Type_Selections_Have_Same_Dependency.yaml | 8 +- ...on_Field_Concrete_Type_Has_Dependency.yaml | 8 +- ...oncrete_Type_Selection_Has_Dependency.yaml | 12 +- ...ions_Have_Dependency_To_Same_Subgraph.yaml | 12 +- ..._Type_Selections_Have_Same_Dependency.yaml | 8 +- ...ion_List_Concrete_Type_Has_Dependency.yaml | 8 +- ...oncrete_Type_Selection_Has_Dependency.yaml | 16 +- ...ions_Have_Dependency_To_Same_Subgraph.yaml | 16 +- ..._Type_Selections_Have_Same_Dependency.yaml | 8 +- ...ercionTests.InputObject_Invalid_Field.yaml | 4 +- ...sts.InputObject_Missing_NonNull_Field.yaml | 4 +- ...sing_NonNull_Field_With_Default_Value.yaml | 16 +- ...ts.InputObject_Missing_Nullable_Field.yaml | 16 +- ...Tests.OneOf_Multiple_Options_Provided.yaml | 4 +- ...oercionTests.OneOf_No_Option_Provided.yaml | 4 +- ...nTests.OneOf_Only_One_Option_Provided.yaml | 16 +- ...One_Option_Provided_But_Value_Is_Null.yaml | 4 +- ...iableCoercionTests.String_With_Quotes.yaml | 16 +- ..._And_Reviews_And_Products_AutoCompose.yaml | 2 +- ...nd_Reviews_And_Products_Introspection.yaml | 2 +- ...eviews_And_Products_Query_TopProducts.yaml | 18 +- ...d_Reviews_And_Products_Query_TypeName.yaml | 10 +- ...d_Reviews_And_Products_With_Variables.yaml | 18 +- ...Tests.Authors_And_Reviews_AutoCompose.yaml | 2 +- ...ts.Authors_And_Reviews_Batch_Requests.yaml | 10 +- ...Authors_And_Reviews_Query_GetUserById.yaml | 2 +- ...ery_GetUserById_With_Invalid_Id_Value.yaml | 2 +- ...hors_And_Reviews_Query_GetUserReviews.yaml | 18 +- ...iews_Query_GetUserReviews_Skip_Author.yaml | 24 +- ...GetUserReviews_Skip_Author_ErrorField.yaml | 28 +- ...Authors_And_Reviews_Query_ReviewsUser.yaml | 18 +- ...onState_With_Multiple_Variable_Values.yaml | 24 +- ...ariable_Values_And_Forwarded_Variable.yaml | 38 +- ...tiple_Variable_Values_Some_Items_Null.yaml | 24 +- ...ts.Fetch_User_With_Invalid_Node_Field.yaml | 18 +- ...ationTests.Fetch_User_With_Node_Field.yaml | 22 +- ...er_With_Node_Field_From_Two_Subgraphs.yaml | 30 +- ...ser_With_Node_Field_Pass_In_Review_Id.yaml | 22 +- ...er_With_Node_Field_Pass_In_Unknown_Id.yaml | 18 +- ...ubgraph_Type_Of_Shared_Field_Not_Node.yaml | 24 +- ...graph_Type_Of_Shared_Field_Not_Node_2.yaml | 32 +- ...graph_Type_Of_Shared_Field_Not_Node_3.yaml | 32 +- ...onTests.Forward_Nested_Node_Variables.yaml | 26 +- ...Tests.Forward_Nested_Object_Variables.yaml | 22 +- ...grationTests.Forward_Nested_Variables.yaml | 22 +- ...ts.Forward_Nested_Variables_No_OpName.yaml | 22 +- ...ariables_No_OpName_Two_RootSelections.yaml | 22 +- ...ionTests.GetFirstPage_With_After_Null.yaml | 16 +- ...llel_Multiple_SubGraphs_WithArguments.yaml | 20 +- ...egrationTests.Require_Data_In_Context.yaml | 28 +- ...rationTests.Require_Data_In_Context_2.yaml | 20 +- ...rationTests.Require_Data_In_Context_3.yaml | 36 +- ...at_Require_Data_From_Another_Subgraph.yaml | 8 +- ...at_Require_Data_From_Another_Subgraph.yaml | 8 +- ..._Containing_More_Selections_Is_Chosen.yaml | 8 +- ...oes_Not_Duplicate_Forwarded_Variables.yaml | 18 +- ...tionTests.TypeName_Field_On_QueryRoot.yaml | 2 +- ...a_Is_Available_In_Resolvable_Subgraph.yaml | 8 +- ...NonNull_One_Service_Errors_EntryField.yaml | 8 +- ...t_NonNull_One_Service_Errors_SubField.yaml | 8 +- ...ullable_One_Service_Errors_EntryField.yaml | 8 +- ..._Nullable_One_Service_Errors_SubField.yaml | 8 +- ...ullable_One_Service_Errors_EntryField.yaml | 8 +- ..._Nullable_One_Service_Errors_SubField.yaml | 8 +- ...st_Service_Offline_EntryField_NonNull.yaml | 4 +- ...t_Service_Offline_EntryField_Nullable.yaml | 4 +- ...fline_SubField_NonNull_Parent_NonNull.yaml | 8 +- ...line_SubField_NonNull_Parent_Nullable.yaml | 8 +- ...ine_SubField_Nullable_Parent_Nullable.yaml | 8 +- ...p_Post_Add_Variables_To_Http_Activity.snap | 4 +- ...Not_Automatically_Added_To_Activities.snap | 4 +- ...erTests.Http_Post_With_Extensions_Map.snap | 4 +- ...RequestDetails_All_IncludesAllDetails.snap | 6 +- ...equestDetails_None_ExcludesAllDetails.snap | 4 +- ....SerializeAs_Will_Be_In_The_Schema.graphql | 13 +- ...ializeAs_Will_Not_Be_In_The_Schema.graphql | 8 +- .../EntityChainTests.Complex_Entity_Call.yaml | 11 +- ...ChainTests.Parent_Entity_Call_Complex.yaml | 12 +- ...mer_Interface_With_Email_Is_Plannable.yaml | 8 +- .../K6PlanTests.DeepNesting.yaml | 16 +- .../LookupTests.Nested_Lookup.yaml | 4 +- ...LookupTests.Require_Inaccessible_Data.yaml | 4 +- ...rgePolicyTests.Snapshot_Aggressive_K6.yaml | 16 +- ...MergePolicyTests.Snapshot_Balanced_K6.yaml | 16 +- ...ePolicyTests.Snapshot_Conservative_K6.yaml | 16 +- ...s_BatchingGroup_When_Group_Is_Created.yaml | 8 +- ...tionPlannerTests.Plan_Key_Requirement.yaml | 4 +- ...nerTests.Plan_Simple_Interface_Lookup.yaml | 4 +- ...rationPlannerTests.Plan_Simple_Lookup.yaml | 4 +- ...Plan_Simple_Operation_2_Source_Schema.yaml | 6 +- ...Plan_Simple_Operation_3_Source_Schema.yaml | 8 +- ...PlannerTests.Plan_Simple_Union_Lookup.yaml | 4 +- ...ests.Issues_Issue_190_Inline_Fragment.yaml | 4 +- ...nTests.Issues_Issue_190_With_Typename.yaml | 4 +- ...sts.Issues_Issue_190_Without_Typename.yaml | 4 +- ...ancedAdaptationTests.Issues_Issue_281.yaml | 16 +- ...ptationTests.Provides_Simple_Provides.yaml | 4 +- ...res_Provides_Simple_Requires_Provides.yaml | 8 +- ...onTests.Union_Union_Overfetching_Test.yaml | 12 +- ...haviorTests.Fragments_Fragment_Spread.yaml | 12 +- ...ests.Fragments_Simple_Inline_Fragment.yaml | 12 +- ...aviorTests.Include_Skip_Basic_Include.yaml | 9 +- ...BehaviorTests.Include_Skip_Basic_Skip.yaml | 9 +- ...ts.Include_Skip_Include_At_Root_Fetch.yaml | 8 +- ...orTests.Include_Skip_Include_Fragment.yaml | 9 +- ...e_Skip_Include_Fragment_At_Root_Fetch.yaml | 8 +- .../PlannerBehaviorTests.Mutations.yaml | 5 +- ...And_Requires_With_Args_That_Conflicts.yaml | 26 +- ..._That_Does_Not_Conflicts_Should_Merge.yaml | 13 +- ...ple_Requires_With_Args_That_Conflicts.yaml | 22 +- ..._Deeply_Nested_Requires_With_Variable.yaml | 8 +- ...Requires_With_Variables_And_Fragments.yaml | 8 +- ...ArgumentTests.Requires_With_Arguments.yaml | 4 +- ...gumentTests.Simple_Requires_Arguments.yaml | 13 +- ...irementChainTests.Requires_Circular_2.yaml | 9 +- ...mentChainTests.Requires_Requires_Many.yaml | 17 +- ...ementChainTests.Requires_Requires_One.yaml | 4 +- ...elds_Same_Requirement_Different_Order.yaml | 19 +- .../RequirementParityTests.Deep_Requires.yaml | 8 +- .../RequirementParityTests.Keys_Mashup.yaml | 14 +- ...Requires_With_Fragments_On_Interfaces.yaml | 7 +- ...uirementParityTests.Simplest_Requires.yaml | 5 +- ...ame_Service_Calls_With_Args_Conflicts.yaml | 26 +- ...quirementTests.Plan_Complex_Operation.yaml | 24 +- ...Plan_Simple_Operation_1_Source_Schema.yaml | 5 +- ..._Leaks_Into_SourceSchema_Request_Shop.yaml | 32 +- ...Into_SelectionSet_With_Non_Lead_Field.yaml | 5 +- ...Tests.Requirement_SelectionMap_Object.yaml | 5 +- ....Requirement_SelectionMap_Object_Shop.yaml | 8 +- ...anningTests.Medium_Query_With_Aliases.yaml | 32 +- .../Rewriters/DocumentRewriterTests.cs | 221 +- .../InlineFragmentOperationRewriterTests.cs | 24 +- .../Utilities/SyntaxSerializer.QuerySyntax.cs | 7 +- .../SyntaxSerializer.SchemaSyntax.cs | 10 +- ...scriptionWithIndent_OutHasIndentation.snap | 2 +- ...scriptionWithIndent_OutHasIndentation.snap | 2 +- ...veDefinition_WithArgument_ToString.graphql | 2 +- ...rTests.ParseFacebookKitchenSinkSchema.snap | 4 +- .../SchemaParserTests.OneGraph_Schema.snap | 49335 ++++++++++------ .../SyntaxRewriterTests.Rename_Field.snap | 4 +- ...bleTests.Create_Implicit_Operation.graphql | 19 +- ...eate_Implicit_Operation_Normalized.graphql | 19 +- ....Output_Should_BindAllRuntimeTypes.graphql | 4 +- ...dTypeTests.Should_MapObjectIdToScalar.snap | 7 +- .../SchemaFormatterTests.cs | 8 +- ...istType_Should_NotContainAllOperation.snap | 10 +- ...ospectionClientTests.IntrospectServer.snap | 41 +- ...lizeIntrospectionWithIntDefaultValues.snap | 4 +- ...ntrospectionWithNullDeprecationReason.snap | 2 +- ...eserializeStarWarsIntrospectionResult.snap | 2 +- .../Integration/MultiProfileTest.Client.cs | 15 +- ...gmentIncludeAndSkipDirectiveTest.Client.cs | 6 +- .../Integration/UploadScalarTest.Client.cs | 66 +- .../UploadScalar_InMemoryTest.Client.cs | 66 +- ...lient_MapperMapsEntityOnRootCorrectly.snap | 15 +- ...apsEntityOnRootCorrectly_With_Records.snap | 15 +- ...dGeneratorTests.UnionWithNestedObject.snap | 12 +- ...pe_Fields_Are_Inspected_For_LeafTypes.snap | 12 +- ...InputGeneratorTests.KeywordCollisions.snap | 12 +- ...eneratorTests.Operation_With_Comments.snap | 18 +- ...tion_With_Comments_With_Input_Records.snap | 18 +- ...ests.Operation_With_ComplexInputTypes.snap | 12 +- ...ests.Operation_With_Complex_Arguments.snap | 18 +- ...orTests.Operation_With_FirstNonUpload.snap | 15 +- ...torTests.Operation_With_LastNonUpload.snap | 15 +- ...ratorTests.Operation_With_UploadAsArg.snap | 57 +- ...peration_With_UploadInDeepInputObject.snap | 12 +- ...ts.Operation_With_UploadInInputObject.snap | 12 +- ...ests.Generate_StarWarsIntegrationTest.snap | 12 +- ...torTests.Operation_With_Leaf_Argument.snap | 12 +- ...torTests.Operation_With_Type_Argument.snap | 15 +- ...sts.Generate_ChatClient_AllOperations.snap | 39 +- ...NullableValueType_WithoutGlobal_Input.snap | 12 +- ...atorTests.NonNullable_ValueType_Input.snap | 12 +- ...ionGeneratorTests.Nullable_List_Input.snap | 12 +- ...neratorTests.Nullable_ValueType_Input.snap | 12 +- ...sts.Operation_With_MultipleOperations.snap | 54 +- ...ar_With_RuntimeType_ValueType_AsInput.snap | 12 +- ...tom_Scalar_With_ValueType_RuntimeType.snap | 12 +- ...Type_Fails_If_ValueType_Not_Specified.snap | 12 +- ...pe_RuntimeType_Used_As_Nullable_Input.snap | 12 +- ...hemaGeneratorTests.Create_GetFeatById.snap | 12 +- ...emaGeneratorTests.Create_GetFeatsPage.snap | 15 +- ...pleSearch_From_ActiveDirectory_Schema.snap | 42 +- ...atorTests.Create_Query_With_Skip_Take.snap | 18 +- ...orTests.Create_UpdateMembers_Mutation.snap | 12 +- ...eratorTests.FieldsWithUnderlineInName.snap | 6 +- .../SchemaGeneratorTests.HasuraMutation.snap | 12 +- ...eneratorTests.LowerCaseScalarArgument.snap | 12 +- ...aGeneratorTests.NodeTypenameCollision.snap | 12 +- ...chemaGeneratorTests.QueryInterference.snap | 51 +- ...chemaGeneratorTests.Schema_With_OneOf.snap | 12 +- ...a_With_OneOf_And_Directive_Definition.snap | 12 +- ...ests.Generate_StarWarsIntegrationTest.snap | 12 +- ...torTests.Operation_With_Leaf_Argument.snap | 12 +- ...torTests.Operation_With_Type_Argument.snap | 15 +- ...azorGeneratorTests.Query_And_Mutation.snap | 30 +- 590 files changed, 36863 insertions(+), 22514 deletions(-) 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..853773920fe 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,13 @@ 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..853773920fe 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,13 @@ 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..e72303fd660 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,13 @@ 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..e72303fd660 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,13 @@ 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..f7eff38acd9 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,13 @@ 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..f7eff38acd9 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,13 @@ 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..65c436c5a7d 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,13 @@ 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..965cbd65565 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,13 @@ 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..21a7bc9b29a 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,13 @@ 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..8d8799c6edb 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,13 @@ 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..8f0b393d9a2 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,13 @@ 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..0ff0dcf17a0 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,13 @@ 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..16bf552571e 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,13 @@ 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..7b695b3a6d1 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,13 @@ 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..abd0f7ec47f 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,13 @@ 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..e4bbb194baa 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,13 @@ 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..696ddf3a66e 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,13 @@ 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..f97b75a927a 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,13 @@ 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..ed4f23f685d 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,13 @@ 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..6fcef0c3de7 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,13 @@ 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..6fb9c6d4ee4 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,13 @@ 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..fcd2a1901a4 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,16 @@ 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..69ad872efdf 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,18 @@ 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..69ad872efdf 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,18 @@ 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..ec10cffd2f2 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,18 @@ 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..3b8b0353fa4 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,13 @@ 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..ea7bbe1c7e6 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,13 @@ 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..7cadf4566fc 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,13 @@ 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..c4a43e2d759 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,13 @@ 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..3bc3ca43a42 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,18 @@ 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..3bc3ca43a42 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,18 @@ 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..a4d4c864c2c 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,18 @@ 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..c21b8c50b84 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,13 @@ 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 +92,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 +116,13 @@ 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..c0ddadfb9b0 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,12 @@ 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 +53,10 @@ 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..c0ddadfb9b0 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,12 @@ 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 +53,10 @@ 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..44bece851f3 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,8 @@ 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..ca424481eaf 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,8 @@ 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..44bece851f3 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,8 @@ 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..2b45d4897f5 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,8 @@ 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..46b81c84f29 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,8 @@ 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..49f172ba9b4 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,8 @@ 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..46b81c84f29 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,8 @@ 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..382095fb328 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,8 @@ 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..b7db18736ef 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,8 @@ 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..541a6e5985d 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,8 @@ 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..7815ed5e049 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,8 @@ 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..b611757ef9f 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,8 @@ 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..e031f1f8341 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,12 @@ 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 +22,14 @@ 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 +57,14 @@ 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 +72,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 +100,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 +118,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 +140,42 @@ 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..1a9d8d8c4f1 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,12 @@ 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 +22,14 @@ 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 +57,14 @@ 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 +72,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 +100,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 +118,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 +140,40 @@ 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..1a9d8d8c4f1 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,12 @@ 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 +22,14 @@ 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 +57,14 @@ 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 +72,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 +100,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 +118,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 +140,40 @@ 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..46e7b0d7906 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,12 @@ 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 +33,14 @@ 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 +68,14 @@ 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 +83,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 +111,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 +129,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 +151,43 @@ 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..f51a0b8fad0 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,12 @@ 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 +33,14 @@ 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 +68,14 @@ 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 +83,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 +111,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 +129,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 +151,43 @@ 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..1b5ac29998a 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,12 @@ 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 +23,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..8677937018f 100644 --- a/src/HotChocolate/Caching/test/Caching.Tests/SchemaTests.cs +++ b/src/HotChocolate/Caching/test/Caching.Tests/SchemaTests.cs @@ -46,7 +46,13 @@ 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..05aa74723db 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,33 @@ 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 +67,33 @@ 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 +161,10 @@ 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..f6ecdced0ca 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,33 @@ 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 +67,33 @@ 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 +161,10 @@ 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..7791f59235f 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,34 @@ 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 +68,34 @@ 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 +163,10 @@ 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..7ec06f7d098 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,32 @@ 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 +66,32 @@ 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 +159,10 @@ 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..7ec06f7d098 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,32 @@ 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 +66,32 @@ 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 +159,10 @@ 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..98af61f954e 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,10 @@ 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..13dab0fdd14 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,10 @@ 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..9c99b0b135c 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,10 @@ 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..d243d9224e8 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,10 @@ 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..d243d9224e8 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,10 @@ 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..c8236289a60 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,15 @@ 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..4e40b75f483 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,13 @@ 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..6bc5a72f58a 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,12 @@ 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 +22,12 @@ 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 +55,12 @@ 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 +68,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 +128,9 @@ 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/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..e279dd85ecd 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,27 @@ 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 +115,18 @@ 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..611ced3e4fd 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,16 @@ 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 +63,12 @@ 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 +146,21 @@ 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..e2675555b34 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,10 @@ 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..8392f90219c 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,12 @@ 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..0f6d8d7bf01 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,26 @@ 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..0f6d8d7bf01 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,26 @@ 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..c89ba2f8d53 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,12 @@ 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 +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 "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..9d221776472 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,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 "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..3c45b317b2d 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,24 @@ 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..b7bcf5f9162 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,10 @@ 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 +82,16 @@ 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..a25c4e9fcd9 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,10 @@ 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..e870c4e7438 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,24 @@ 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..6c812d920d9 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,24 @@ 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..7ef2a2e01b2 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,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 "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..7efb7537efe 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,12 @@ 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..7ccf4701892 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,12 @@ 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..fd43a3a4fad 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,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 "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 +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 "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..c0ca9ebfd25 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,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 "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..1553f9d9953 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,11 @@ 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..5818877c80c 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,10 @@ 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..ada446fa6e6 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,10 @@ -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..5818877c80c 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,10 @@ 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..1ad66d53593 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,22 @@ 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..983b56e16e3 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,22 @@ 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..0ec8229e761 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,6 @@ 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..69e0b6c2e64 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,10 @@ 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..c7aaaf1f9a8 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,23 @@ 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..78e32f290e7 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,14 @@ 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..fd90f47c5e0 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,10 @@ 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..7e390824d7a 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,10 @@ 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..d0dd532d88f 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,12 @@ 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..52d3c0aa053 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,12 @@ 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..ea8d8f6fa88 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,12 @@ 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..ea8d8f6fa88 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,12 @@ 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..7dd05eb7903 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,7 @@ 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..7dd05eb7903 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,7 @@ 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..2fb3f06c281 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,12 @@ 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..2fb3f06c281 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,12 @@ 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..2fb3f06c281 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,12 @@ 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..8edf24067d8 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,10 @@ 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..41200a245f9 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,10 @@ 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..16094138133 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,9 @@ 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..16583123f74 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,10 @@ 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..6e11bc100cd 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,10 @@ 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..7e5fdd3587d 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,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 `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..50dace39e67 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,9 @@ 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..e0bd82b8070 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,10 @@ 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..ec982df4f0d 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,10 @@ 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..07ae61baaeb 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,10 @@ 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..0cd73b4c9bf 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,10 @@ 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..4ae49314ab9 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,10 @@ 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..4f747473379 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,10 @@ 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..6df7a729598 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,14 @@ 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..b37de2db4c9 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,10 @@ 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 +21,10 @@ 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..b37de2db4c9 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,10 @@ 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 +21,10 @@ 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..80b0cbcb901 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,10 @@ 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..46b1a8de01e 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,10 @@ 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..80b0cbcb901 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,10 @@ 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..4666392e62f 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,13 @@ 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..fcc0bc4994d 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,8 @@ 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..b04b0ab8f22 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,8 @@ 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..0aa622f994b 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,12 @@ 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 +110,34 @@ 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..ce0a1a015c7 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,13 @@ 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 +146,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 @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 +215,16 @@ 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..767593726cb 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,13 @@ 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 +111,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 @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 +180,15 @@ 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..0eabfbf2770 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,13 @@ 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 +146,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 @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 +215,16 @@ 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..fcc0bc4994d 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,8 @@ 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..b04b0ab8f22 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,8 @@ 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..677a402a9c4 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,20 @@ 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..b074a49b22c 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,20 @@ 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..01a91a13de3 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,44 @@ 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..f0901e099f5 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,32 @@ 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..ebe642e8307 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,32 @@ 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..169ba76ffe0 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,10 @@ 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..21d894f0743 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,10 @@ 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..1622384f79d 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,33 @@ 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..775c789847e 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,33 @@ 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..80966d129ec 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,18 @@ 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..b795f2345ef 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,10 @@ 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..7c768e8b782 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,10 @@ 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..acd3e4e8a3f 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,10 @@ 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..6a5f6f47047 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,10 @@ 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..56e4cced436 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,16 @@ 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 +176,52 @@ 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 +385,9 @@ 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 +411,13 @@ 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 +426,10 @@ 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 +450,16 @@ 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..0f6c85251aa 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,10 @@ 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..7d5d88fd110 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,14 @@ 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..73da45bd4c9 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,14 @@ 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..a6cd39c011f 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,14 @@ 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..7d5d88fd110 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,14 @@ 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..7d5d88fd110 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,14 @@ 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..fc7f6a0aa4b 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,26 @@ 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..cf7d07c86af 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,14 @@ 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/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/AbstractTypeTests.Abstract_Type.yaml index 5d690fe7ced..12111ab31ef 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,12 @@ 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..b61e48c281b 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,12 @@ 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..64c9cdcd785 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,12 @@ 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 +142,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 +201,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..c8b70567303 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,12 @@ 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 +142,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 +197,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..d778c23317a 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,12 @@ 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 +133,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 +184,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_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 76e0e491c98..d106ec8e5d1 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) { __typename viewerCanVote @@ -141,9 +139,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) { __typename viewerCanVote @@ -162,9 +158,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) { __typename 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 db3ffbb4b6a..d10e248d003 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) { __typename totalVotes @@ -166,9 +164,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) { __typename totalVotes @@ -187,9 +183,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) { __typename 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 ac461331c97..682796d57da 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 { @@ -134,9 +132,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 93339941563..4774e857512 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 { @@ -153,9 +151,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..a19b315a01c 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,12 @@ 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..80e5e5fd56c 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,20 @@ 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..4419bc7e143 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,20 @@ 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..19cbf53dd69 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,20 @@ 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..acb8b9b6664 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,20 @@ 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..7dd549f78ee 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,20 @@ 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..ffcc3979f68 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,20 @@ 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..58ce31af57c 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,20 @@ 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..d2db64f057e 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,20 @@ 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..2597257253e 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,12 @@ 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 +134,12 @@ 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..0028a19ac42 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,19 @@ 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 +142,17 @@ 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 +163,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..2eb099564c5 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,12 @@ 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 +146,12 @@ 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..6ad275a4760 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,12 @@ 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 +154,18 @@ 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 +216,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..8c195865c8e 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,12 @@ 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 +146,12 @@ 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..3162a71f005 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,12 @@ 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 +125,12 @@ 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..dbba5f33779 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,12 @@ 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 +212,18 @@ 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 +294,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..1dea9cc276c 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,12 @@ 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 +177,18 @@ 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 +279,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..ae753a9064a 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,12 @@ 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 +177,18 @@ 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 +279,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..4894658f8f9 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,12 @@ 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 +177,18 @@ 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 +279,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..93943c8a03e 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,19 @@ 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 +178,18 @@ 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 +211,7 @@ sourceSchemas: operationPlan: operation: - document: | - query GetBooks( - $first: Int - ) { + query GetBooks($first: Int) { books(first: $first) { nodes { id @@ -230,9 +232,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 +249,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..8be909e1a46 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,19 @@ 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 +216,18 @@ 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 +263,7 @@ sourceSchemas: operationPlan: operation: - document: | - query GetBooks( - $first: Int - ) { + query GetBooks($first: Int) { books(first: $first) { nodes { id @@ -282,9 +284,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 +301,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..7fd650e1e62 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,19 @@ 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 +178,18 @@ 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 +211,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 +232,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 +250,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.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 5bbeb609e05..c8f700148a7 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 @@ -85,7 +85,10 @@ 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) @@ -98,7 +101,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 @@ -137,9 +140,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $files: [Upload!]! - ) { + query($files: [Upload!]!) { multiUpload(files: $files) { fileName contentType @@ -154,9 +155,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 64fd08e036e..b0dbbe90d0a 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 @@ -85,7 +85,10 @@ 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) @@ -98,7 +101,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 @@ -137,9 +140,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $input: FilesInput! - ) { + query($input: FilesInput!) { multiUploadWithInput(input: $input) { fileName contentType @@ -154,9 +155,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 f5b8b4aa80a..9825d754e04 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 @@ -85,7 +85,10 @@ 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) @@ -98,7 +101,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 @@ -137,9 +140,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $files: [Upload!]! - ) { + query($files: [Upload!]!) { multiUploadWithInput(input: { files: $files }) { fileName contentType @@ -154,9 +155,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_Single_File.yaml b/src/HotChocolate/Fusion/test/Fusion.AspNetCore.Tests/__snapshots__/FileUploadTests.Upload_Single_File.yaml index fd25994210b..c9b63492b7a 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 @@ -73,7 +73,10 @@ 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) @@ -86,7 +89,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 @@ -113,9 +116,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $file: Upload! - ) { + query($file: Upload!) { singleUpload(file: $file) { fileName contentType @@ -130,9 +131,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 6d6122915e3..e79e64c0e46 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 @@ -73,7 +73,10 @@ 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) @@ -86,7 +89,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 @@ -113,9 +116,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $input: FileInput! - ) { + query($input: FileInput!) { singleUploadWithInput(input: $input) { fileName contentType @@ -130,9 +131,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 886afe11f0e..5acb7784ae9 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 @@ -73,7 +73,10 @@ 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) @@ -86,7 +89,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 @@ -113,9 +116,7 @@ sourceSchemas: operationPlan: operation: - document: | - query( - $file: Upload! - ) { + query($file: Upload!) { singleUploadWithInput(input: { file: $file }) { fileName contentType @@ -130,9 +131,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..b08b92c3259 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,19 @@ 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..2ed742c79ef 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,12 @@ 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 +180,12 @@ 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..88dce663b3f 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,12 @@ 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 +120,12 @@ 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..56765efc22e 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,11 @@ 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..2e48a3cce96 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,11 @@ 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..05a2b905742 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,11 @@ 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..09c79a85b27 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,11 @@ 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..407e757153a 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,11 @@ 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..17060d05bd1 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,11 @@ 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..7e38b90e4b5 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,12 @@ 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 +169,12 @@ 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..36845466700 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,12 @@ 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 +169,12 @@ 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..d5409bad5ca 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,12 @@ 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 +116,12 @@ 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..534bf3e60ff 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,12 @@ 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 +116,17 @@ 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..777486fb213 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,12 @@ 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 +114,17 @@ 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..a91ff775e79 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,12 @@ 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 +116,12 @@ 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..01c366f9fec 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,12 @@ 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 +181,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 +219,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 +330,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..e9d03f2c11d 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,12 @@ 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 +146,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 +209,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! } @@ -369,9 +374,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.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 7d69b1eade0..4d5606d6ebb 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) { __typename email @@ -60,9 +58,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) { __typename 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/SyntaxSerializer.QuerySyntax.cs b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.QuerySyntax.cs index 189c0969cdf..d942147cba1 100644 --- a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.QuerySyntax.cs +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.QuerySyntax.cs @@ -70,10 +70,13 @@ private void WriteVariableDefinitions( else { writer.Write('('); - writer.WriteLine(); writer.Indent(); - writer.WriteMany(variableDefinitions, VisitVariableDefinition, Environment.NewLine); + foreach (var variableDefinition in variableDefinitions) + { + writer.WriteLine(); + VisitVariableDefinition(variableDefinition, writer); + } writer.WriteLine(); writer.Unindent(); 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 187dcf74dcd..c4a314b4b5a 100644 --- a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.SchemaSyntax.cs +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.SchemaSyntax.cs @@ -352,7 +352,7 @@ private void WriteArgumentDefinitions( writer.Write(", "); } - WriteInputValueDefinition(arguments[i], writer); + VisitArgumentValueDefinition(arguments[i], writer); } writer.Write(")"); @@ -366,7 +366,7 @@ private void WriteArgumentDefinitions( { writer.WriteLine(); writer.WriteIndent(); - WriteInputValueDefinition(argument, writer); + VisitArgumentValueDefinition(argument, writer); } writer.WriteLine(); @@ -579,6 +579,12 @@ 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); 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 5d8e3ff0b3b..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 @@ -11,5 +11,5 @@ interface Foo @a @b { "abc" bar: String @foo "abc" - baz(a: String = "abc"): [Int] @foo @bar + baz("abc" a: String = "abc"): [Int] @foo @bar } 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 ffc8dea1c1e..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 @@ -11,5 +11,5 @@ type Foo @a @b { "abc" bar: String @foo "abc" - baz(a: String = "abc"): [Int] @foo @bar + baz("abc" a: String = "abc"): [Int] @foo @bar } diff --git a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/DirectiveDefinitionNodeTests.DirectiveDefinition_WithArgument_ToString.graphql b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/DirectiveDefinitionNodeTests.DirectiveDefinition_WithArgument_ToString.graphql index d28ced30326..0c1af1ee452 100644 --- a/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/DirectiveDefinitionNodeTests.DirectiveDefinition_WithArgument_ToString.graphql +++ b/src/HotChocolate/Language/test/Language.SyntaxTree.Tests/__snapshots__/DirectiveDefinitionNodeTests.DirectiveDefinition_WithArgument_ToString.graphql @@ -1,2 +1,2 @@ "bar" -directive @foo(abc: efg) repeatable on FIELD +directive @foo("def" abc: efg) repeatable on FIELD 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 0042cf49bb8..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 @@ -14,7 +14,9 @@ type Foo implements Bar & Baz { """ This is a description of the `two` field. """ - two(argument: InputType!): Type + two(""" + This is a description of the `argument` argument. + """ argument: InputType!): Type three(argument: InputType, other: String): Int four(argument: String = "string"): String five(argument: [String] = [ 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 2f2c2695669..c34882454a1 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 @@ -744,7 +744,9 @@ type SalesforceOrgLifecycleNotification { Status Code """ statusCode: String - customFields(fields: [String!]): JSON! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! } type SalesforceOrgLifecycleNotificationCreatedSubscriptionPayload { @@ -1729,7 +1731,9 @@ type SalesforceAssetTokenEvent { Actor Token Payload """ actorTokenPayload: String - customFields(fields: [String!]): JSON! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! } type SalesforceAssetTokenEventCreatedSubscriptionPayload { @@ -2949,52 +2953,44 @@ input OneGraphSubscriptionGmailAuthArg { } type Subscription { - gmailNewMessage( - gmailAuth: OneGraphSubscriptionGmailAuthArg - webhookUrl: String! - ): GmailMessage! + gmailNewMessage(""" + Optional authentication for making requests to the Gmail API if you want + to use a custom gmail app instead of OneGraph's built-in app. + + 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, """ + 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 - ): GmailSubscriptionRoot! + 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 - ): TrelloSubscriptionRoot! + 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 - ): TwilioSubscriptionRoot! + 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 - ): IntercomSubscriptionRoot! + 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 - ): NpmSubscriptionRoot! + 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 - ): SalesforceSubscriptionRoot! + 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 - ): GithubSubscriptionRoot! + 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.") } @@ -3364,55 +3360,83 @@ type GithubPassthroughMutation { """ Make a POST request to the GitHub API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + post(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PUT request to the GitHub API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + put(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PATCH request to the GitHub API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + patch(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a DELETE request to the GitHub API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + delete(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } input GitHubMergePullRequest_oneGraphInput { @@ -12729,7 +12753,9 @@ type OneGraphMutation { unLinkOneGraphNodes(input: OneGraphUnLinkOneGraphNodesInput!): OneGraphUnLinkOneGraphNodesResponsePayload! completeTour(data: OneGraphCompleteTourData!): OneGraphCompleteTourResponsePayload! createApp( - orgId: String! + """ + `id` of the organization that this app should belong to + """ orgId: String! corsOrigins: [String!]! description: String name: String! @@ -12956,9 +12982,15 @@ type ZeitPurchaseDomainResponsePayload { Namespace for all mutations for Zeit """ type ZeitMutationNamespace { - purchaseDomain(data: ZeitPurchaseDomainArg!): ZeitPurchaseDomainResponsePayload! - createDeployment(input: ZeitCreateDeploymentArg!): ZeitCreateDeploymentResponsePayload! - aliasDeployment(input: ZeitAliasDeploymentArg!): ZeitAliasDeploymentResponsePayload! + purchaseDomain(""" + Purchase the specified domain, it receive the domain name as the key name inside the request body. + """ data: ZeitPurchaseDomainArg!): ZeitPurchaseDomainResponsePayload! + createDeployment(""" + Create a Zeit deployment. + """ input: ZeitCreateDeploymentArg!): ZeitCreateDeploymentResponsePayload! + aliasDeployment(""" + Alias a Zeit deployment with a domain. + """ input: ZeitAliasDeploymentArg!): ZeitAliasDeploymentResponsePayload! } """ @@ -13096,7 +13128,9 @@ type TwitterPostStatusResponsePayload { Namespace for all mutations for Twitter """ type TwitterMutationNamespace { - postStatus(input: TwitterPostStatusArg!): TwitterPostStatusResponsePayload! + postStatus(""" + Post a status update on twitter. You know - tweeting! + """ input: TwitterPostStatusArg!): TwitterPostStatusResponsePayload! } """ @@ -13110,55 +13144,83 @@ type TwitchTvPassthroughMutation { """ Make a POST request to the Twitch API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + post(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PUT request to the Twitch API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + put(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PATCH request to the Twitch API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + patch(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a DELETE request to the Twitch API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + delete(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } """ @@ -14484,55 +14546,83 @@ type SalesforcePassthroughMutation { """ Make a POST request to the Salesforce API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + post(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PUT request to the Salesforce API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + put(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PATCH request to the Salesforce API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + patch(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a DELETE request to the Salesforce API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + delete(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } input SalesforceDeleteAuraDefinitionBundleInput { @@ -19626,7 +19716,9 @@ type SalesforceRecentlyViewed { Language """ language: String - customFields(fields: [String!]): JSON! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! } type SalesforceUpdateRecentlyViewedPayload { @@ -28411,7 +28503,9 @@ type SalesforceFeedLike { InsertedBy ID """ insertedBy: SalesforceUser! - customFields(fields: [String!]): JSON! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! } type SalesforceCreateFeedLikePayload { @@ -29940,7 +30034,9 @@ type SalesforceOutgoingEmailRelation { Relation Address """ relationAddress: String - customFields(fields: [String!]): JSON! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! } type SalesforceCreateOutgoingEmailRelationPayload { @@ -34769,7 +34865,9 @@ type SalesforceFeedSignal { InsertedBy ID """ insertedBy: SalesforceUser! - customFields(fields: [String!]): JSON! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! } type SalesforceCreateFeedSignalPayload { @@ -39546,55 +39644,83 @@ type NetlifyPassthroughMutation { """ Make a POST request to the Netlify API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + post(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PUT request to the Netlify API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + put(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PATCH request to the Netlify API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + patch(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a DELETE request to the Netlify API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + delete(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } input NetlifyDeploySiteCapabilitiesArg { @@ -40031,55 +40157,83 @@ type MixpanelPassthroughMutation { """ Make a POST request to the Mixpanel API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + post(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PUT request to the Mixpanel API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + put(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PATCH request to the Mixpanel API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + patch(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a DELETE request to the Mixpanel API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + delete(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } """ @@ -40107,55 +40261,83 @@ type MeetupPassthroughMutation { """ Make a POST request to the Meetup API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + post(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PUT request to the Meetup API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + put(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PATCH request to the Meetup API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + patch(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a DELETE request to the Meetup API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + delete(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } """ @@ -40183,55 +40365,83 @@ type MailchimpPassthroughMutation { """ Make a POST request to the Mailchimp API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + post(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PUT request to the Mailchimp API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + put(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PATCH request to the Mailchimp API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + patch(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a DELETE request to the Mailchimp API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + delete(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } """ @@ -40379,55 +40589,83 @@ type HubspotPassthroughMutation { """ Make a POST request to the Hubspot API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + post(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PUT request to the Hubspot API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + put(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PATCH request to the Hubspot API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + patch(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a DELETE request to the Hubspot API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + delete(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } """ @@ -41159,19 +41397,27 @@ type HubspotMutation { """ Create a new contact in HubSpot. The contact will be created instantly inside of HubSpot, and will be assigned a unique ID (vid) """ - createContact(input: HubspotCreateContactInput!): HubspotCreateContactPayload! + createContact(""" + Input to create contact. + """ input: HubspotCreateContactInput!): HubspotCreateContactPayload! """ Update a contact in HubSpot. """ - updateContact(input: HubspotUpdateContactInput!): HubspotUpdateContactPayload! + updateContact(""" + Input to update a contact. + """ input: HubspotUpdateContactInput!): HubspotUpdateContactPayload! """ Update a contact in HubSpot by email address. """ - updateContactByEmail(input: HubspotUpdateContactByEmailInput!): HubspotUpdateContactPayload! + updateContactByEmail(""" + Input to update a contact by email. + """ input: HubspotUpdateContactByEmailInput!): HubspotUpdateContactPayload! """ Create a contact if it doesn't exist in an account already, or update it with the latest property values if it does. """ - upsertContact(input: HubspotUpdateContactByEmailInput!): HubspotUpsertContactPayload! + upsertContact(""" + Input to update a contact by email. + """ input: HubspotUpdateContactByEmailInput!): HubspotUpsertContactPayload! """ Make a REST API call to the Hubspot API. @@ -41743,55 +41989,83 @@ type DevToPassthroughMutation { """ Make a POST request to the Dev.to API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - post( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + post(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PUT request to the Dev.to API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - put( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + put(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a PATCH request to the Dev.to API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - patch( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + patch(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! """ Make a DELETE request to the Dev.to API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - delete( - body: String - jsonBody: JSON - accept: String - contentType: String - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + delete(""" + The body to send. Only provide one of body or jsonBody. + """ 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, """ + The Accept header to set in the API. + """ accept: String, """ + The Content-Type header to set in the API. + """ contentType: String, """ + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } input DevToDestroyWebhookInput { @@ -42124,137 +42398,337 @@ type AirtableMutation { """ Creates a new record on the given table in the given base. """ - createRecord( - fields: [AirtableRecordFieldArg!]! - tableName: String! - baseId: String! - ): AirtableRecordModificationPayload! + createRecord(fields: [AirtableRecordFieldArg!]!, """ + Table to create the record in + """ 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!]! - recordId: String! - tableName: String! - baseId: String! - ): AirtableRecordModificationPayload! + updateRecord(fields: [AirtableRecordFieldArg!]!, """ + Id of the record to update. + """ recordId: String!, """ + Table that the record lives in. + """ 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!]! - recordId: String! - tableName: String! - baseId: String! - ): AirtableRecordModificationPayload! + replaceRecord(fields: [AirtableRecordFieldArg!]!, """ + Id of the record to replace. + """ recordId: String!, """ + Table that the record lives in. + """ 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! """ Deletes a record on the given table in the given base. """ - deleteRecord(recordId: String!, tableName: String!, baseId: String!): AirtableDeleteRecordPayload! + deleteRecord(""" + Id of the record to delete. + """ recordId: String!, """ + Table that the record lives in. + """ 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! } type Mutation { """ The root for Airtable mutations """ - airtable(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): AirtableMutation! + airtable(""" + 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, """ + 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.") """ The root for Cloudflare mutations """ - cloudflare(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): CloudflareMutationNamespace! + cloudflare(""" + 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, """ + 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.") """ The root for Dev.to mutations """ - devTo(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): DevToMutation! + devTo(""" + 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, """ + 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.") """ The root for Google mutations """ - google(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): GoogleMutations! + google(""" + 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, """ + 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.") """ The root for Hubspot mutations """ - hubspot(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): HubspotMutation! + hubspot(""" + 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, """ + 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.") """ The root for Intercom mutations """ - intercom(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): IntercomMutation! + intercom(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): IntercomMutation! """ The root for Mailchimp mutations """ - mailchimp(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): MailchimpMutation! + mailchimp(""" + 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, """ + 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.") """ The root for Meetup mutations """ - meetup(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): MeetupMutation! + meetup(""" + 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, """ + 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.") """ The root for Mixpanel mutations """ - mixpanel(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): MixpanelMutation! + mixpanel(""" + 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, """ + 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.") """ The root for Netlify mutations """ - netlify(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): NetlifyMutation! + netlify(""" + 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, """ + 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.") """ The root for Salesforce mutations """ - salesforce(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): SalesforceMutation! + salesforce(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): SalesforceMutation! """ The root for Slack mutations """ - slack(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): SlackMutationNamespace! + slack(""" + 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, """ + 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.") """ The root for Spotify mutations """ - spotify(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): SpotifyMutationNamespace! + spotify(""" + 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, """ + 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.") """ The root for Stripe mutations """ - stripe(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): StripeMutationNamespace! + stripe(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): StripeMutationNamespace! """ The root for Trello mutations """ - trello(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): TrelloMutation! + trello(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): TrelloMutation! """ The root for Twilio mutations """ - twilio(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): TwilioMutationNamespace! + twilio(""" + 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, """ + 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.") """ The root for Twitch mutations """ - twitchTv(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): TwitchTvMutation! + twitchTv(""" + 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, """ + 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.") """ The root for Twitter mutations """ - twitter(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): TwitterMutationNamespace! + twitter(""" + 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, """ + 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.") """ The root for YouTube mutations """ - youTube(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): YouTubeMutationNamespace! + youTube(""" + 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, """ + 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.") """ The root for Zeit mutations """ - zeit(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): ZeitMutationNamespace! + zeit(""" + 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, """ + 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.") oneGraph: OneGraphMutation! - brex(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): BrexRootMutationType - eventil(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): EventilMutation - gitHub(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): GitHubMutation - productHunt(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): ProductHuntMutation + brex(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): BrexRootMutationType + eventil(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): EventilMutation + gitHub(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): GitHubMutation + productHunt(""" + 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, """ + 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.") signoutServiceUser(input: OneGraphSignoutServiceUserInput!): SignoutServicesResponsePayload! @@ -42622,7 +43096,9 @@ type RssQuery { """ """ - rss2Feed(url: String!): Rss2Channel! + rss2Feed(""" + The source of the RSS2 feed + """ url: String!): Rss2Channel! } input OneGraphSetAuthGuardianRuleEffectHasuraSetSessionVariableInput { @@ -43237,7 +43713,11 @@ type OneGraphApp { """ Subscriptions created with this app """ - subscriptions(status: OneGraphAppSubscriptionsStatusEnumArg, first: Int): OneGraphAppSubscriptionsConnection! + subscriptions(""" + Fiter by status of the subscription + """ status: OneGraphAppSubscriptionsStatusEnumArg, """ + How many subsriptions to fetch + """ first: Int): OneGraphAppSubscriptionsConnection! """ The JWT settings for this app """ @@ -43245,7 +43725,9 @@ type OneGraphApp { """ Activity related to this app """ - auditLogs(first: Int): OneGraphAppLogConnection! + auditLogs(""" + How many log items to pull from the front of the collection, maximum of `250` + """ first: Int): OneGraphAppLogConnection! """ Sites on Netlify associated with this app. OneGraph will allow CORS and authentication redirects to all previews, branch, and production deploys of these sites. """ @@ -43253,7 +43735,11 @@ type OneGraphApp { """ List of persisted queries for this app """ - persistedQueries(after: String, first: Int): OneGraphPersistedQueryConnection! + persistedQueries(""" + Returns results after the provided cursor. + """ after: String, """ + How many persisted queries to return. Defaults to 10, max 100. + """ first: Int): OneGraphPersistedQueryConnection! """ GitHub repos for the app that can have subscriptions on OneGraph. """ @@ -43378,9 +43864,13 @@ type OneGraphServiceQuery { queries: [OneGraphQuery!]! searchQueries(query: String!): [OneGraphQuery!]! apps: [OneGraphApp!]! - app(id: String!): OneGraphApp! + app(""" + App id + """ id: String!): OneGraphApp! orgs: [OneGraphOrg!]! - org(id: String!): OneGraphOrg! + org(""" + Org id + """ id: String!): OneGraphOrg! serverInfo: OneGraphServerInfo! authGuardianPreview(input: OneGraphSetAuthGuardianInput!): OneGraphSetAuthGuardianResponsePayload } @@ -43464,18 +43954,15 @@ type EventilQuery { """ Events list """ - events( - limit: Int - where: String - name: String - topics: [String] - topic: String - featured: Boolean - before: String - last: Int - after: String - first: Int - ): EventilEventConnection + 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, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): EventilEventConnection """ Return resource owner """ @@ -43533,28 +44020,45 @@ type ProductHuntViewer { """ Look up goals of the viewer. """ - goals( - order: ProductHuntGoalsOrder - current: Boolean - before: String - last: Int - after: String - first: Int - ): ProductHuntGoalConnection! + goals(""" + Define order for the Goals. + """ order: ProductHuntGoalsOrder, """ + Select Goals which are set as current or not current depending on given value. + """ current: Boolean, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntGoalConnection! """ Look up maker groups the viewer is accepted member of. """ - makerGroups( - order: ProductHuntMakerGroupsOrder - before: String - last: Int - after: String - first: Int - ): ProductHuntMakerGroupConnection! + makerGroups(""" + Define order for the MakerGroups. + """ order: ProductHuntMakerGroupsOrder, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntMakerGroupConnection! """ Look up maker projects the viewer is a maintainer(either created or maintained by) of. """ - makerProjects(before: String, last: Int, after: String, first: Int): ProductHuntMakerProjectConnection! + makerProjects(""" + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntMakerProjectConnection! """ User who is the viewer of the API. """ @@ -43857,7 +44361,15 @@ interface ProductHuntTopicableInterface { """ Look up topics that are associated with the object. """ - topics(before: String, last: Int, after: String, first: Int): ProductHuntTopicConnection! + topics(""" + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntTopicConnection! } """ @@ -43963,7 +44475,11 @@ type ProductHuntMedia { """ Public URL for the media object. Incase of videos this URL represents thumbnail generated from video. """ - url(height: Int, width: Int): String! + url(""" + Set height of the image to given value. + """ height: Int, """ + Set width of the image to given value. + """ width: Int): String! """ Video URL of the media object. """ @@ -43985,14 +44501,19 @@ interface ProductHuntVotableInterface { """ """ - votes( - createdBefore: String - createdAfter: String - before: String - last: Int - after: String - first: Int - ): ProductHuntVoteConnection! + votes(""" + Select Votes which were created before the given date and time. + """ createdBefore: String, """ + Select Votes which were created after the given date and time. + """ createdAfter: String, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntVoteConnection! """ Number of votes that the object has currently. """ @@ -44100,15 +44621,39 @@ type ProductHuntUser { """ Look up collections that the user is following. """ - followedCollections(before: String, last: Int, after: String, first: Int): ProductHuntCollectionConnection! + followedCollections(""" + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntCollectionConnection! """ Look up other users who are following the user. """ - followers(before: String, last: Int, after: String, first: Int): ProductHuntUserConnection! + followers(""" + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntUserConnection! """ Look up other users who are being followed by the user. """ - following(before: String, last: Int, after: String, first: Int): ProductHuntUserConnection! + following(""" + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntUserConnection! """ Headline text of the user. """ @@ -44132,7 +44677,15 @@ type ProductHuntUser { """ Look up posts that the user has made. """ - madePosts(before: String, last: Int, after: String, first: Int): ProductHuntPostConnection! + madePosts(""" + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntPostConnection! """ Name of the user. """ @@ -44144,7 +44697,15 @@ type ProductHuntUser { """ Look up posts that the user has submitted. """ - submittedPosts(before: String, last: Int, after: String, first: Int): ProductHuntPostConnection! + submittedPosts(""" + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntPostConnection! """ Twitter username of the user. """ @@ -44160,7 +44721,15 @@ type ProductHuntUser { """ Look up posts that the user has voted for. """ - votedPosts(before: String, last: Int, after: String, first: Int): ProductHuntPostConnection! + votedPosts(""" + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntPostConnection! """ URL for the user's website """ @@ -44212,13 +44781,17 @@ type ProductHuntComment implements ProductHuntVotableInterface { """ Lookup comments that were posted on the comment itself. """ - replies( - order: ProductHuntCommentsOrder - before: String - last: Int - after: String - first: Int - ): ProductHuntCommentConnection! + replies(""" + Define order for the Comments. + """ order: ProductHuntCommentsOrder, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntCommentConnection! """ Public URL of the comment. """ @@ -44234,14 +44807,19 @@ type ProductHuntComment implements ProductHuntVotableInterface { """ """ - votes( - createdBefore: String - createdAfter: String - before: String - last: Int - after: String - first: Int - ): ProductHuntVoteConnection! + votes(""" + Select Votes which were created before the given date and time. + """ createdBefore: String, """ + Select Votes which were created after the given date and time. + """ createdAfter: String, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntVoteConnection! """ Number of votes that the object has currently. """ @@ -44341,17 +44919,29 @@ type ProductHuntPost implements ProductHuntVotableInterface & ProductHuntTopicab """ Lookup collections which the Post is part of. """ - collections(before: String, last: Int, after: String, first: Int): ProductHuntCollectionConnection! + collections(""" + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntCollectionConnection! """ Lookup comments on the Post. """ - comments( - order: ProductHuntCommentsOrder - before: String - last: Int - after: String - first: Int - ): ProductHuntCommentConnection! + comments(""" + Define order for the Comments. + """ order: ProductHuntCommentsOrder, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntCommentConnection! """ Number of comments made on the Post. """ @@ -44419,7 +45009,15 @@ type ProductHuntPost implements ProductHuntVotableInterface & ProductHuntTopicab """ Look up topics that are associated with the object. """ - topics(before: String, last: Int, after: String, first: Int): ProductHuntTopicConnection! + topics(""" + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntTopicConnection! """ URL of the Post on Product Hunt. """ @@ -44435,14 +45033,19 @@ type ProductHuntPost implements ProductHuntVotableInterface & ProductHuntTopicab """ """ - votes( - createdBefore: String - createdAfter: String - before: String - last: Int - after: String - first: Int - ): ProductHuntVoteConnection! + votes(""" + Select Votes which were created before the given date and time. + """ createdBefore: String, """ + Select Votes which were created after the given date and time. + """ createdAfter: String, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntVoteConnection! """ Number of votes that the object has currently. """ @@ -44524,7 +45127,15 @@ type ProductHuntCollection implements ProductHuntTopicableInterface { """ Lookup posts which are part of the collection. """ - posts(before: String, last: Int, after: String, first: Int): ProductHuntPostConnection! + posts(""" + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntPostConnection! """ Tagline of the collection. """ @@ -44532,7 +45143,15 @@ type ProductHuntCollection implements ProductHuntTopicableInterface { """ Look up topics that are associated with the object. """ - topics(before: String, last: Int, after: String, first: Int): ProductHuntTopicConnection! + topics(""" + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntTopicConnection! """ Public URL of the goal. """ @@ -44554,96 +45173,153 @@ type ProductHuntQuery { """ Look up a Collection(only published). """ - collection(slug: String, id: ID): ProductHuntCollection + collection(""" + URL friendly slug for the object. + """ slug: String, """ + ID for the object. + """ id: ID): ProductHuntCollection """ Look up Collections by various parameters. """ - collections( - order: ProductHuntCollectionsOrder - featured: Boolean - userId: ID - postId: ID - before: String - last: Int - after: String - first: Int - ): ProductHuntCollectionConnection! + collections(""" + Define order for the Collections. + """ order: ProductHuntCollectionsOrder, """ + Select Collections that have been featured or not featured depending on given value. + """ featured: Boolean, """ + Select Collections that are created by User with the given ID. + """ userId: ID, """ + Select Collections that have the Post with the given ID. + """ postId: ID, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntCollectionConnection! """ Look up a Comment. """ - comment(id: ID!): ProductHuntComment + comment(""" + ID for the object. + """ id: ID!): ProductHuntComment """ Look up a Goal. """ - goal(id: ID!): ProductHuntGoal + goal(""" + ID for the object. + """ id: ID!): ProductHuntGoal """ Look up Goals by various parameters. """ - goals( - order: ProductHuntGoalsOrder - completed: Boolean - makerProjectId: ID - makerGroupId: ID - userId: ID - before: String - last: Int - after: String - first: Int - ): ProductHuntGoalConnection! + goals(""" + Define order for the Goals. + """ order: ProductHuntGoalsOrder, """ + Select Goals that have been completed or not completed depending on given value. + """ completed: Boolean, """ + Select Goals that are created in the MakerProject with given ID. + """ makerProjectId: ID, """ + Select Goals that are created in the MakerGroup(Space) with given ID. + """ makerGroupId: ID, """ + Select Goals that are created by User with the given ID. + """ userId: ID, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntGoalConnection! """ Look up a MakerGroup. """ - makerGroup(id: ID!): ProductHuntMakerGroup + makerGroup(""" + ID for the object. + """ id: ID!): ProductHuntMakerGroup """ Look up MakerGroups by various parameters. """ - makerGroups( - order: ProductHuntMakerGroupsOrder - userId: ID - before: String - last: Int - after: String - first: Int - ): ProductHuntMakerGroupConnection! + makerGroups(""" + Define order for the MakerGroups. + """ order: ProductHuntMakerGroupsOrder, """ + Select MakerGroups that the User with the given ID is accepted member of. + """ userId: ID, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntMakerGroupConnection! """ Look up a Post. """ - post(slug: String, id: ID): ProductHuntPost + post(""" + URL friendly slug for the object. + """ slug: String, """ + ID for the object. + """ id: ID): ProductHuntPost """ Look up Posts by various parameters. """ - posts( - twitterUrl: String - order: ProductHuntPostsOrder - topic: String - postedAfter: String - postedBefore: String - featured: Boolean - before: String - last: Int - after: String - first: Int - ): ProductHuntPostConnection! + posts(""" + Select Posts that have the given twitter url. + """ twitterUrl: String, """ + Define order for the Posts. + """ order: ProductHuntPostsOrder, """ + Select Posts that have the given slug as one of their topics. + """ topic: String, """ + Select Posts which were posted after the given date and time. + """ postedAfter: String, """ + Select Posts which were posted before the given date and time. + """ postedBefore: String, """ + Select Posts that have been featured or not featured depending on given value. + """ featured: Boolean, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntPostConnection! """ Look up a Topic. """ - topic(slug: String, id: ID): ProductHuntTopic + topic(""" + URL friendly slug for the object. + """ slug: String, """ + ID for the object. + """ id: ID): ProductHuntTopic """ Look up Topics by various parameters. """ - topics( - order: ProductHuntTopicsOrder - query: String - followedByUserId: ID - before: String - last: Int - after: String - first: Int - ): ProductHuntTopicConnection! + topics(""" + Define order for the Topics. + """ order: ProductHuntTopicsOrder, """ + Select Topics whose name or aliases match the given string + """ query: String, """ + Select Topics that are followed by User with the given ID. + """ followedByUserId: ID, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Returns the first _n_ elements from the list. + """ first: Int): ProductHuntTopicConnection! """ Look up a User. """ - user(username: String, id: ID): ProductHuntUser + user(""" + Username for the user. + """ username: String, """ + ID for the user. + """ id: ID): ProductHuntUser """ Top level scope for currently authenticated user. Includes `goals`, `makerGroups`, `makerProjects` & `user` fields. """ @@ -44661,12 +45337,15 @@ type GithubPassthroughQuery { """ Make a GET request to the GitHub API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get( - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + get(""" + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } enum GitHubSecurityAdvisoryIdentifierType { @@ -44961,7 +45640,9 @@ type GitHubQuery { """ Look up a code of conduct by its key """ - codeOfConduct(key: String!): GitHubCodeOfConduct + codeOfConduct(""" + The code of conduct's key + """ key: String!): GitHubCodeOfConduct """ Look up a code of conduct by its key """ @@ -44969,23 +45650,33 @@ type GitHubQuery { """ Look up an enterprise by URL slug. """ - enterprise(invitationToken: String, slug: String!): GitHubEnterprise + enterprise(""" + The enterprise invitation token. + """ invitationToken: String, """ + The enterprise URL slug. + """ slug: String!): GitHubEnterprise """ Look up a pending enterprise administrator invitation by invitee, enterprise and role. """ - enterpriseAdministratorInvitation( - role: GitHubEnterpriseAdministratorRole! - enterpriseSlug: String! - userLogin: String! - ): GitHubEnterpriseAdministratorInvitation + enterpriseAdministratorInvitation(""" + The role for the business member invitation. + """ role: GitHubEnterpriseAdministratorRole!, """ + The slug of the enterprise the user was invited to join. + """ enterpriseSlug: String!, """ + The login of the user invited to join the business. + """ userLogin: String!): GitHubEnterpriseAdministratorInvitation """ Look up a pending enterprise administrator invitation by invitation token. """ - enterpriseAdministratorInvitationByToken(invitationToken: String!): GitHubEnterpriseAdministratorInvitation + enterpriseAdministratorInvitationByToken(""" + The invitation token sent with the invitation email. + """ invitationToken: String!): GitHubEnterpriseAdministratorInvitation """ Look up an open source license by its key """ - license(key: String!): GitHubLicense + license(""" + The license's downcased SPDX ID + """ key: String!): GitHubLicense """ Return a list of known open source licenses """ @@ -44993,37 +45684,59 @@ type GitHubQuery { """ Get alphabetically sorted list of Marketplace categories """ - marketplaceCategories( - excludeSubcategories: Boolean - excludeEmpty: Boolean - includeCategories: [String!] - ): [GitHubMarketplaceCategory!]! + marketplaceCategories(""" + Returns top level categories only, excluding any subcategories. + """ excludeSubcategories: Boolean, """ + Exclude categories with no listings. + """ excludeEmpty: Boolean, """ + Return only the specified categories. + """ includeCategories: [String!]): [GitHubMarketplaceCategory!]! """ Look up a Marketplace category by its slug. """ - marketplaceCategory(useTopicAliases: Boolean, slug: String!): GitHubMarketplaceCategory + marketplaceCategory(""" + Also check topic aliases for the category slug + """ useTopicAliases: Boolean, """ + The URL slug of the category. + """ slug: String!): GitHubMarketplaceCategory """ Look up a single Marketplace listing """ - marketplaceListing(slug: String!): GitHubMarketplaceListing + marketplaceListing(""" + Select the listing that matches this slug. It's the short name of the listing used in its URL. + """ slug: String!): GitHubMarketplaceListing """ Look up Marketplace listings """ - marketplaceListings( - withFreeTrialsOnly: Boolean - primaryCategoryOnly: Boolean - slugs: [String] - allStates: Boolean - organizationId: ID - adminId: ID - viewerCanAdmin: Boolean - useTopicAliases: Boolean - categorySlug: String - last: Int - first: Int - before: String - after: String - ): GitHubMarketplaceListingConnection! + marketplaceListings(""" + Select only listings that offer a free trial. + """ withFreeTrialsOnly: Boolean, """ + Select only listings where the primary category matches the given category slug. + """ primaryCategoryOnly: Boolean, """ + Select the listings with these slugs, if they are visible to the viewer. + """ 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, """ + Select listings for products owned by the specified organization. + """ organizationId: ID, """ + Select listings that can be administered by the specified user. + """ adminId: ID, """ + Select listings to which user has admin access. If omitted, listings visible to the + viewer are returned. + """ viewerCanAdmin: Boolean, """ + Also check topic aliases for the category slug + """ useTopicAliases: Boolean, """ + Select only listings with the given category. + """ categorySlug: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubMarketplaceListingConnection! """ Return information about the GitHub instance """ @@ -45031,19 +45744,27 @@ type GitHubQuery { """ Fetches an object given its ID. """ - node(id: ID!): GitHubNode + node(""" + ID of the object. + """ id: ID!): GitHubNode """ Lookup nodes by a list of IDs. """ - nodes(ids: [ID!]!): [GitHubNode]! + nodes(""" + The list of node IDs. + """ ids: [ID!]!): [GitHubNode]! """ Lookup a organization by login. """ - organization(login: String!): GitHubOrganization + organization(""" + The organization's login. + """ login: String!): GitHubOrganization """ The client's rate limit information. """ - rateLimit(dryRun: Boolean): GitHubRateLimit + rateLimit(""" + If true, calculate the cost for the query without evaluating it + """ dryRun: Boolean): GitHubRateLimit """ Hack to workaround https://github.com/facebook/relay/issues/112 re-exposing the root query object """ @@ -45051,69 +45772,104 @@ type GitHubQuery { """ Lookup a given repository by the owner and repository name. """ - repository(name: String!, owner: String!): GitHubRepository + repository(""" + The name of the repository + """ name: String!, """ + The login field of a user or organization + """ owner: String!): GitHubRepository """ Lookup a repository owner (ie. either a User or an Organization) by login. """ - repositoryOwner(login: String!): GitHubRepositoryOwner + repositoryOwner(""" + The username to lookup the owner by. + """ login: String!): GitHubRepositoryOwner """ Lookup resource by a URL. """ - resource(url: String!): GitHubUniformResourceLocatable + resource(""" + The URL. + """ url: String!): GitHubUniformResourceLocatable """ Perform a search across resources. """ - search( - type: GitHubSearchType! - query: String! - last: Int - first: Int - before: String - after: String - ): GitHubSearchResultItemConnection! + search(""" + The types of search items to search within. + """ type: GitHubSearchType!, """ + The search string to look for. + """ query: String!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubSearchResultItemConnection! """ GitHub Security Advisories """ - securityAdvisories( - last: Int - first: Int - before: String - after: String - updatedSince: String - publishedSince: String - identifier: GitHubSecurityAdvisoryIdentifierFilter - orderBy: GitHubSecurityAdvisoryOrder - ): GitHubSecurityAdvisoryConnection! + securityAdvisories(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filter advisories to those updated since a time in the past. + """ updatedSince: String, """ + Filter advisories to those published since a time in the past. + """ publishedSince: String, """ + Filter advisories by identifier, e.g. GHSA or CVE. + """ identifier: GitHubSecurityAdvisoryIdentifierFilter, """ + Ordering options for the returned topics. + """ orderBy: GitHubSecurityAdvisoryOrder): GitHubSecurityAdvisoryConnection! """ Fetch a Security Advisory by its GHSA ID """ - securityAdvisory(ghsaId: String!): GitHubSecurityAdvisory + securityAdvisory(""" + GitHub Security Advisory ID. + """ ghsaId: String!): GitHubSecurityAdvisory """ Software Vulnerabilities documented by GitHub Security Advisories """ - securityVulnerabilities( - last: Int - first: Int - before: String - after: String - severities: [GitHubSecurityAdvisorySeverity!] - package: String - ecosystem: GitHubSecurityAdvisoryEcosystem - orderBy: GitHubSecurityVulnerabilityOrder - ): GitHubSecurityVulnerabilityConnection! + securityVulnerabilities(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + A list of severities to filter vulnerabilities by. + """ severities: [GitHubSecurityAdvisorySeverity!], """ + A package name to filter vulnerabilities by. + """ package: String, """ + An ecosystem to filter vulnerabilities by. + """ ecosystem: GitHubSecurityAdvisoryEcosystem, """ + Ordering options for the returned topics. + """ orderBy: GitHubSecurityVulnerabilityOrder): GitHubSecurityVulnerabilityConnection! """ Look up a single Sponsors Listing """ - sponsorsListing(slug: String!): GitHubSponsorsListing + 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.") """ Look up a topic by name. """ - topic(name: String!): GitHubTopic + topic(""" + The topic's name. + """ name: String!): GitHubTopic """ Lookup a user by login. """ - user(login: String!): GitHubUser + user(""" + The user's login. + """ login: String!): GitHubUser """ The currently authenticated user. """ @@ -46147,17 +46903,13 @@ type ZendeskSearchResultsConnection { The root for Zendesk """ type ZendeskQuery { - search( - sortOrder: ZendeskSearchSortOrder - sortBy: ZendeskSearchSortBy - status: ZendeskSearchStatus - type: ZendeskSearchType - query: String - last: Int - first: Int - before: String - after: String - ): ZendeskSearchResultsConnection + 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 @@ -46418,15 +47170,21 @@ type ZeitQuery { """ Logs from a deployment to Zeit. """ - deploymentLogs(id: String!): [ZeitDeploymentLog!] + deploymentLogs(""" + The deployment id from Zeit. + """ id: String!): [ZeitDeploymentLog!] """ Whether a domain *may* be available """ - domainAvailable(name: String!): ZeitDomainAvailabilityStatus + domainAvailable(""" + The domain name + """ name: String!): ZeitDomainAvailabilityStatus """ Check domain price """ - domainPrice(name: String!): ZeitPriceOfADomain + domainPrice(""" + The domain name + """ name: String!): ZeitPriceOfADomain """ Retrieves a list of domains registered for the authenticating user. Each domain entry contains an `aliases` array listing every alias associated with the domain. The field `isExternal` is a boolean value telling whether an external nameserver is used to manage DNS records for the domain. """ @@ -47578,7 +48336,21 @@ type YouTubeCaption { """ Text of the caption track """ - body(tfmt: String): String + body(""" + The tfmt parameter specifies that the caption track should be returned in a specific format. If the parameter is not included in the request, the track is returned in its original format. + + Supported values are: + + sbv – SubViewer subtitle + + scc – Scenarist Closed Caption format + + srt – SubRip subtitle + + ttml – Timed Text Markup Language caption + + vtt – Web Video Text Tracks caption + """ tfmt: String): String } """ @@ -48788,7 +49560,11 @@ type YouTubePlaylist { """ List of items for this playlist, with pagination information. """ - items(after: String, first: Int): YouTubePlaylistItemsConnection! + items(""" + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Number of videos to fetch. + """ first: Int): YouTubePlaylistItemsConnection! } """ @@ -48797,15 +49573,20 @@ Root fields for YouTube type YouTubeQuery { oldVideo(id: String!): YoutubeVideo @deprecated(reason: "Use `YouTube video` instead") - playlist(id: String!): YouTubePlaylist! - playlistItems(after: String, first: Int, playlistId: String!): YouTubePlaylistItemsConnection! - search( - cursor: String - pageToken: String - maxResults: Int! - order: String - q: String! - ): YoutubeVideoSearchResult + playlist(""" + Playlist id + """ id: String!): YouTubePlaylist! + playlistItems(""" + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Number of items to fetch. + """ first: Int, """ + Playlist id + """ playlistId: String!): YouTubePlaylistItemsConnection! + 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( @@ -49161,7 +49942,11 @@ type USPSQuery { """ Track a USPS package """ - track(sourceId: String, trackId: String!): UspsTrackResponse! + track(""" + Optional SourceId to report your client to USPS + """ sourceId: String, """ + Tracking number for the package + """ trackId: String!): UspsTrackResponse! } """ @@ -50035,11 +50820,15 @@ type UpsQuery { """ Track a UPS package """ - track(inquiryNumber: String!): UpsTrackResponse! + track(""" + Inquiry number for the package + """ inquiryNumber: String!): UpsTrackResponse! """ Track several UPS package """ - trackMultiple(inquiryNumbers: [String!]!): [UpsTrackResponse!]! + trackMultiple(""" + Inquiry numbers for the package + """ inquiryNumbers: [String!]!): [UpsTrackResponse!]! } """ @@ -50050,7 +50839,9 @@ type Twitter { """ Returns a collection of the most recent Tweets and Retweets posted by the authenticating user and the users they follow. The home timeline is central to how most users interact with the Twitter service. """ - homeTimeline(first: Int): TwitterTimeline + homeTimeline(""" + Number of tweets to fetch + """ first: Int): TwitterTimeline } """ @@ -50064,12 +50855,15 @@ type TwitchTvPassthroughQuery { """ Make a GET request to the Twitch API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get( - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + get(""" + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } """ @@ -50255,8 +51049,12 @@ type TwilioIncomingPhoneNumber { """ voiceUrl: String messages( - dateSent: String - from: String + """ + 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 @@ -50437,20 +51235,26 @@ type TwilioMessagesConnection { The root for Twilio """ type TwilioQuery { - messages( - dateSent: String - from: String - to: 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, """ + Only show messages to this phone number. + """ to: String, last: Int, first: Int, before: String, after: String): TwilioMessagesConnection incomingPhoneNumbers( - phoneNumber: String - origin: TwilioPhoneNumberOriginEnumArg - friendlyName: String - beta: Boolean + """ + 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 @@ -50519,43 +51323,65 @@ type TrelloQuery { """ Find a trello member by id """ - member(username: String, id: String): TrelloMember! + member(""" + Find the member by username. Must provide one of username or id. + """ username: String, """ + Find the member by id. Must provide one of id or username. + """ id: String): TrelloMember! """ Find a trello action by id """ - action(id: String!): TrelloAction! + action(""" + Action id + """ id: String!): TrelloAction! """ Find a trello board by id """ - board(id: String!): TrelloBoard! + board(""" + Board id + """ id: String!): TrelloBoard! """ Find a trello card by id """ - card(id: String!): TrelloCard! + card(""" + Card id + """ id: String!): TrelloCard! """ Find a trello checklist by id """ - checklist(id: String!): TrelloChecklist! + checklist(""" + Checklist id + """ id: String!): TrelloChecklist! """ Find a trello customField by id """ - customField(id: String!): TrelloCustomFields! + customField(""" + CustomField id + """ id: String!): TrelloCustomFields! """ Find a trello enterprise by id """ - enterprise(id: String!): TrelloEnterprise! + enterprise(""" + Enterprise id + """ id: String!): TrelloEnterprise! """ Find a trello list by id """ - list(id: String!): TrelloList! + list(""" + List id + """ id: String!): TrelloList! """ Find a trello organization by id """ - organization(id: String!): TrelloOrganization! + organization(""" + Organization id + """ id: String!): TrelloOrganization! """ Find a trello webhook by id """ - webhook(id: String!): TrelloWebhook! + webhook(""" + Webhook id + """ id: String!): TrelloWebhook! """ Lists all available emoji """ @@ -50922,8 +51748,12 @@ The root for Spotify type SpotifyQuery { featuredPlaylists(limit: Int): [SpotifyPlaylist!] me: SpotifyCurrentUserProfile - artist(id: String!): SpotifyArtist - track(id: String!): SpotifyTrack + artist(""" + The artist id + """ id: String!): SpotifyArtist + track(""" + The track id + """ id: String!): SpotifyTrack search(data: SpotifySearchArg!): SpotifySearchResults } @@ -51212,7 +52042,11 @@ type SlackMembersConnection { } type Slack { - members(after: String, first: Int): SlackMembersConnection! + members(""" + Pagination cursor from which to retrieve additional results + """ 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! channels: SlackChannelsConnection! channel(id: String!): SlackChannel @@ -51229,12 +52063,15 @@ type SalesforcePassthroughQuery { """ Make a GET request to the Salesforce API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get( - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + get(""" + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } """ @@ -51725,3490 +52562,5075 @@ type SalesforceQuery { """ Collection of Salesforce Auth. Providers """ - authProviders( - filter: SalesforceAuthProviderConnectionFilter - sortByCustomField: String - sortByField: SalesforceAuthProviderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthProvidersConnection + authProviders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthProviderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthProviderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Auth. Providers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthProvidersConnection """ Collection of Salesforce Platform Cache Partitions """ - platformCachePartitions( - filter: SalesforcePlatformCachePartitionConnectionFilter - sortByCustomField: String - sortByField: SalesforcePlatformCachePartitionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePlatformCachePartitionsConnection + platformCachePartitions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePlatformCachePartitionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePlatformCachePartitionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Platform Cache Partitions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePlatformCachePartitionsConnection """ Collection of Salesforce Streaming Channel Shares """ - streamingChannelShares( - filter: SalesforceStreamingChannelShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceStreamingChannelShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceStreamingChannelSharesConnection + streamingChannelShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceStreamingChannelShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceStreamingChannelShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Streaming Channel Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceStreamingChannelSharesConnection """ Collection of Salesforce Case Comments """ - caseComments( - filter: SalesforceCaseCommentConnectionFilter - sortByCustomField: String - sortByField: SalesforceCaseCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseCommentsConnection + caseComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Case Comments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseCommentsConnection """ Collection of Salesforce Letterheads """ - brandTemplates( - filter: SalesforceBrandTemplateConnectionFilter - sortByCustomField: String - sortByField: SalesforceBrandTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceBrandTemplatesConnection + brandTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceBrandTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceBrandTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Letterheads to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceBrandTemplatesConnection """ Collection of Salesforce Undecided Event Relations """ - undecidedEventRelations( - filter: SalesforceUndecidedEventRelationConnectionFilter - sortByCustomField: String - sortByField: SalesforceUndecidedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUndecidedEventRelationsConnection + undecidedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUndecidedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Undecided Event Relations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUndecidedEventRelationsConnection """ Collection of Salesforce Content Delivery Views """ - contentDistributionViews( - filter: SalesforceContentDistributionViewConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentDistributionViewSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionViewsConnection + contentDistributionViews(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionViewConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionViewSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Delivery Views to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionViewsConnection """ Collection of Salesforce User Licenses """ - userLicenses( - filter: SalesforceUserLicenseConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserLicenseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserLicensesConnection + userLicenses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserLicenseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserLicenseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User Licenses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserLicensesConnection """ Collection of Salesforce Content User Subscriptions """ - contentUserSubscriptions( - filter: SalesforceContentUserSubscriptionConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentUserSubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentUserSubscriptionsConnection + contentUserSubscriptions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentUserSubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentUserSubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content User Subscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentUserSubscriptionsConnection """ Collection of Salesforce Process Instances """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: String - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Process Instances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce Cases """ - cases( - filter: SalesforceCaseConnectionFilter - sortByCustomField: String - sortByField: SalesforceCaseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCasesConnection + cases(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Cases to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCasesConnection """ Collection of Salesforce Visualforce Pages """ - apexPages( - filter: SalesforceApexPageConnectionFilter - sortByCustomField: String - sortByField: SalesforceApexPageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexPagesConnection + apexPages(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexPageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexPageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Visualforce Pages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexPagesConnection """ Collection of Salesforce LightningComponentResources """ - lightningComponentResources( - filter: SalesforceLightningComponentResourceConnectionFilter - sortByCustomField: String - sortByField: SalesforceLightningComponentResourceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLightningComponentResourcesConnection + lightningComponentResources(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLightningComponentResourceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLightningComponentResourceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LightningComponentResources to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLightningComponentResourcesConnection """ Collection of Salesforce Visualforce Components """ - apexComponents( - filter: SalesforceApexComponentConnectionFilter - sortByCustomField: String - sortByField: SalesforceApexComponentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexComponentsConnection + apexComponents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexComponentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexComponentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Visualforce Components to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexComponentsConnection """ Collection of Salesforce Forecast Shares """ - forecastShares( - filter: SalesforceForecastShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceForecastShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceForecastSharesConnection + forecastShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceForecastShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceForecastShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Forecast Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceForecastSharesConnection """ Collection of Salesforce Attachments """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: String - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce Opportunity Partners """ - opportunityPartners( - filter: SalesforceOpportunityPartnerConnectionFilter - sortByCustomField: String - sortByField: SalesforceOpportunityPartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityPartnersConnection + opportunityPartners(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityPartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Opportunity Partners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityPartnersConnection """ Collection of Salesforce Order Feeds """ - orderFeeds( - filter: SalesforceOrderFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceOrderFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderFeedsConnection + orderFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Order Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderFeedsConnection """ Collection of Salesforce Orders """ - orders( - filter: SalesforceOrderConnectionFilter - sortByCustomField: String - sortByField: SalesforceOrderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrdersConnection + orders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Orders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrdersConnection """ Collection of Salesforce Campaigns """ - campaigns( - filter: SalesforceCampaignConnectionFilter - sortByCustomField: String - sortByField: SalesforceCampaignSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignsConnection + campaigns(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Campaigns to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignsConnection """ Collection of Salesforce Group Member Requests """ - collaborationGroupMemberRequests( - filter: SalesforceCollaborationGroupMemberRequestConnectionFilter - sortByCustomField: String - sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupMemberRequestsConnection + collaborationGroupMemberRequests(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Group Member Requests to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupMemberRequestsConnection """ Collection of Salesforce Macro Shares """ - macroShares( - filter: SalesforceMacroShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceMacroShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMacroSharesConnection + macroShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMacroShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMacroShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Macro Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMacroSharesConnection """ Collection of Salesforce Asset Files """ - contentAssets( - filter: SalesforceContentAssetConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentAssetsConnection + contentAssets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Asset Files to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentAssetsConnection """ Collection of Salesforce Custom Permission Dependencies """ - customPermissionDependencies( - filter: SalesforceCustomPermissionDependencyConnectionFilter - sortByCustomField: String - sortByField: SalesforceCustomPermissionDependencySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomPermissionDependencysConnection + customPermissionDependencies(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomPermissionDependencyConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Custom Permission Dependencies to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomPermissionDependencysConnection """ Collection of Salesforce Account Feeds """ - accountFeeds( - filter: SalesforceAccountFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceAccountFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountFeedsConnection + accountFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Account Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountFeedsConnection """ Collection of Salesforce Custom Brand Assets """ - customBrandAssets( - filter: SalesforceCustomBrandAssetConnectionFilter - sortByCustomField: String - sortByField: SalesforceCustomBrandAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomBrandAssetsConnection + customBrandAssets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomBrandAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Custom Brand Assets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomBrandAssetsConnection """ Collection of Salesforce User Logins """ - userLogins( - filter: SalesforceUserLoginConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserLoginSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserLoginsConnection + userLogins(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserLoginConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserLoginSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User Logins to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserLoginsConnection """ Collection of Salesforce Stamp Assignments """ - stampAssignments( - filter: SalesforceStampAssignmentConnectionFilter - sortByCustomField: String - sortByField: SalesforceStampAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceStampAssignmentsConnection + stampAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceStampAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceStampAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Stamp Assignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceStampAssignmentsConnection """ Collection of Salesforce Apex Triggers """ - apexTriggers( - filter: SalesforceApexTriggerConnectionFilter - sortByCustomField: String - sortByField: SalesforceApexTriggerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTriggersConnection + apexTriggers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTriggerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTriggerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Apex Triggers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTriggersConnection """ Collection of Salesforce Sites """ - siteFeeds( - filter: SalesforceSiteFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceSiteFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSiteFeedsConnection + siteFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSiteFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSiteFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Sites to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSiteFeedsConnection """ Collection of Salesforce Dashboard Feeds """ - dashboardFeeds( - filter: SalesforceDashboardFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceDashboardFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDashboardFeedsConnection + dashboardFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDashboardFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDashboardFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Dashboard Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDashboardFeedsConnection """ Collection of Salesforce Apex Classes """ - apexClasses( - filter: SalesforceApexClassConnectionFilter - sortByCustomField: String - sortByField: SalesforceApexClassSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexClasssConnection + apexClasses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexClassConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexClassSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Apex Classes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexClasssConnection """ Collection of Salesforce Account Shares """ - accountShares( - filter: SalesforceAccountShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceAccountShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountSharesConnection + accountShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Account Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountSharesConnection """ Collection of Salesforce Feed Items """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: String - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Feed Items to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce Content Folder Links """ - contentFolderLinks( - filter: SalesforceContentFolderLinkConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentFolderLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentFolderLinksConnection + contentFolderLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentFolderLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentFolderLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Folder Links to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentFolderLinksConnection """ Collection of Salesforce Periods """ - periods( - filter: SalesforcePeriodConnectionFilter - sortByCustomField: String - sortByField: SalesforcePeriodSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePeriodsConnection + periods(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePeriodConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePeriodSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Periods to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePeriodsConnection """ Collection of Salesforce Dashboard Component Feeds """ - dashboardComponentFeeds( - filter: SalesforceDashboardComponentFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceDashboardComponentFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDashboardComponentFeedsConnection + dashboardComponentFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDashboardComponentFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Dashboard Component Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDashboardComponentFeedsConnection """ Collection of Salesforce Opportunity Histories """ - opportunityHistories( - filter: SalesforceOpportunityHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceOpportunityHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityHistorysConnection + opportunityHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Opportunity Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityHistorysConnection """ Collection of Salesforce Asset Histories """ - assetHistories( - filter: SalesforceAssetHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceAssetHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetHistorysConnection + assetHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Asset Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetHistorysConnection """ Collection of Salesforce UserAppMenuCustomization Shares """ - userAppMenuCustomizationShares( - filter: SalesforceUserAppMenuCustomizationShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserAppMenuCustomizationSharesConnection + userAppMenuCustomizationShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserAppMenuCustomizationShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserAppMenuCustomization Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserAppMenuCustomizationSharesConnection """ Collection of Salesforce AppMenuItems """ - appMenuItems( - filter: SalesforceAppMenuItemConnectionFilter - sortByCustomField: String - sortByField: SalesforceAppMenuItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAppMenuItemsConnection + appMenuItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAppMenuItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAppMenuItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AppMenuItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAppMenuItemsConnection """ Collection of Salesforce Last Used Apps """ - userAppInfos( - filter: SalesforceUserAppInfoConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserAppInfoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserAppInfosConnection + userAppInfos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserAppInfoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserAppInfoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Last Used Apps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserAppInfosConnection """ Collection of Salesforce Action Link Group Templates """ - actionLinkGroupTemplates( - filter: SalesforceActionLinkGroupTemplateConnectionFilter - sortByCustomField: String - sortByField: SalesforceActionLinkGroupTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceActionLinkGroupTemplatesConnection + actionLinkGroupTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceActionLinkGroupTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceActionLinkGroupTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Action Link Group Templates to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceActionLinkGroupTemplatesConnection """ Collection of Salesforce User Provisioning Request Shares """ - userProvisioningRequestShares( - filter: SalesforceUserProvisioningRequestShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningRequestSharesConnection + userProvisioningRequestShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningRequestShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User Provisioning Request Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningRequestSharesConnection """ Collection of Salesforce Data.com Owned Entities """ - datacloudOwnedEntities( - filter: SalesforceDatacloudOwnedEntityConnectionFilter - sortByCustomField: String - sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDatacloudOwnedEntitysConnection + datacloudOwnedEntities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDatacloudOwnedEntityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Data.com Owned Entities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDatacloudOwnedEntitysConnection """ Collection of Salesforce Assets """ - assets( - filter: SalesforceAssetConnectionFilter - sortByCustomField: String - sortByField: SalesforceAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetsConnection + assets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Assets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetsConnection """ Collection of Salesforce Approval Requests """ - processInstanceWorkitems( - filter: SalesforceProcessInstanceWorkitemConnectionFilter - sortByCustomField: String - sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstanceWorkitemsConnection + processInstanceWorkitems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceWorkitemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Approval Requests to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstanceWorkitemsConnection """ Collection of Salesforce User Provisioning Accounts """ - userProvAccounts( - filter: SalesforceUserProvAccountConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserProvAccountSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvAccountsConnection + userProvAccounts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvAccountConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvAccountSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User Provisioning Accounts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvAccountsConnection """ Collection of Salesforce User List Views """ - userListViews( - filter: SalesforceUserListViewConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserListViewSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserListViewsConnection + userListViews(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserListViewConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserListViewSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User List Views to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserListViewsConnection """ Collection of Salesforce Apex Email Notifications """ - apexEmailNotifications( - filter: SalesforceApexEmailNotificationConnectionFilter - sortByCustomField: String - sortByField: SalesforceApexEmailNotificationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexEmailNotificationsConnection + apexEmailNotifications(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexEmailNotificationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexEmailNotificationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Apex Email Notifications to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexEmailNotificationsConnection """ Collection of Salesforce Category Nodes """ - categoryNodes( - filter: SalesforceCategoryNodeConnectionFilter - sortByCustomField: String - sortByField: SalesforceCategoryNodeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCategoryNodesConnection + categoryNodes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCategoryNodeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCategoryNodeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Category Nodes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCategoryNodesConnection """ Collection of Salesforce Entity Subscriptions """ - entitySubscriptions( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: String - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + entitySubscriptions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Entity Subscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Partners """ - partners( - filter: SalesforcePartnerConnectionFilter - sortByCustomField: String - sortByField: SalesforcePartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePartnersConnection + partners(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Partners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePartnersConnection """ Collection of Salesforce Chatter Invitations """ - collaborationInvitations( - filter: SalesforceCollaborationInvitationConnectionFilter - sortByCustomField: String - sortByField: SalesforceCollaborationInvitationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationInvitationsConnection + collaborationInvitations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationInvitationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Chatter Invitations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationInvitationsConnection """ Collection of Salesforce Additional Directory Numbers """ - additionalNumbers( - filter: SalesforceAdditionalNumberConnectionFilter - sortByCustomField: String - sortByField: SalesforceAdditionalNumberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAdditionalNumbersConnection + additionalNumbers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAdditionalNumberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAdditionalNumberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Additional Directory Numbers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAdditionalNumbersConnection """ Collection of Salesforce Flow Record Relations """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: String - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Flow Record Relations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Opportunity Products """ - opportunityLineItems( - filter: SalesforceOpportunityLineItemConnectionFilter - sortByCustomField: String - sortByField: SalesforceOpportunityLineItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityLineItemsConnection + opportunityLineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityLineItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Opportunity Products to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityLineItemsConnection """ Collection of Salesforce Task Feeds """ - taskFeeds( - filter: SalesforceTaskFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceTaskFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTaskFeedsConnection + taskFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Task Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTaskFeedsConnection """ Collection of Salesforce Organizations """ - organizations( - filter: SalesforceOrganizationConnectionFilter - sortByCustomField: String - sortByField: SalesforceOrganizationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrganizationsConnection + organizations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrganizationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrganizationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Organizations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrganizationsConnection """ Collection of Salesforce Goals """ - todayGoals( - filter: SalesforceTodayGoalConnectionFilter - sortByCustomField: String - sortByField: SalesforceTodayGoalSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTodayGoalsConnection + todayGoals(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTodayGoalConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTodayGoalSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Goals to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTodayGoalsConnection """ Collection of Salesforce Named Credentials """ - namedCredentials( - filter: SalesforceNamedCredentialConnectionFilter - sortByCustomField: String - sortByField: SalesforceNamedCredentialSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceNamedCredentialsConnection + namedCredentials(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceNamedCredentialConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceNamedCredentialSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Named Credentials to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceNamedCredentialsConnection """ Collection of Salesforce List Email Recipient Sources """ - listEmailRecipientSources( - filter: SalesforceListEmailRecipientSourceConnectionFilter - sortByCustomField: String - sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceListEmailRecipientSourcesConnection + listEmailRecipientSources(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceListEmailRecipientSourceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of List Email Recipient Sources to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceListEmailRecipientSourcesConnection """ Collection of Salesforce Contact Histories """ - contactHistories( - filter: SalesforceContactHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceContactHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactHistorysConnection + contactHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contact Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactHistorysConnection """ Collection of Salesforce Content Document Subscriptions """ - contentDocumentSubscriptions( - filter: SalesforceContentDocumentSubscriptionConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentSubscriptionsConnection + contentDocumentSubscriptions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentSubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Document Subscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentSubscriptionsConnection """ Collection of Salesforce Opportunities """ - opportunities( - filter: SalesforceOpportunityConnectionFilter - sortByCustomField: String - sortByField: SalesforceOpportunitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunitysConnection + opportunities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Opportunities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunitysConnection """ Collection of Salesforce Groups """ - collaborationGroups( - filter: SalesforceCollaborationGroupConnectionFilter - sortByCustomField: String - sortByField: SalesforceCollaborationGroupSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupsConnection + collaborationGroups(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Groups to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupsConnection """ Collection of Salesforce Ideas """ - ideas( - filter: SalesforceIdeaConnectionFilter - sortByCustomField: String - sortByField: SalesforceIdeaSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceIdeasConnection + ideas(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceIdeaConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceIdeaSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Ideas to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceIdeasConnection """ Collection of Salesforce Content Version Histories """ - contentVersionHistories( - filter: SalesforceContentVersionHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentVersionHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionHistorysConnection + contentVersionHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Version Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionHistorysConnection """ Collection of Salesforce Report Feeds """ - reportFeeds( - filter: SalesforceReportFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceReportFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceReportFeedsConnection + reportFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceReportFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceReportFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Report Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceReportFeedsConnection """ Collection of Salesforce Data Assessment Field Value Metrics """ - dataAssessmentValueMetrics( - filter: SalesforceDataAssessmentValueMetricConnectionFilter - sortByCustomField: String - sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDataAssessmentValueMetricsConnection + dataAssessmentValueMetrics(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDataAssessmentValueMetricConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Data Assessment Field Value Metrics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDataAssessmentValueMetricsConnection """ Collection of Salesforce Custom Brands """ - customBrands( - filter: SalesforceCustomBrandConnectionFilter - sortByCustomField: String - sortByField: SalesforceCustomBrandSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomBrandsConnection + customBrands(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomBrandConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomBrandSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Custom Brands to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomBrandsConnection """ Collection of Salesforce Notes """ - notes( - filter: SalesforceNoteConnectionFilter - sortByCustomField: String - sortByField: SalesforceNoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceNotesConnection + notes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceNoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceNoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Notes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceNotesConnection """ Collection of Salesforce Assignment Rules """ - assignmentRules( - filter: SalesforceAssignmentRuleConnectionFilter - sortByCustomField: String - sortByField: SalesforceAssignmentRuleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssignmentRulesConnection + assignmentRules(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssignmentRuleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssignmentRuleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Assignment Rules to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssignmentRulesConnection """ Collection of Salesforce Contract Contact Roles """ - contractContactRoles( - filter: SalesforceContractContactRoleConnectionFilter - sortByCustomField: String - sortByField: SalesforceContractContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractContactRolesConnection + contractContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contract Contact Roles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractContactRolesConnection """ Collection of Salesforce Votes """ - votes( - filter: SalesforceVoteConnectionFilter - sortByCustomField: String - sortByField: SalesforceVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceVotesConnection + votes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Votes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceVotesConnection """ Collection of Salesforce Site Histories """ - siteHistories( - filter: SalesforceSiteHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceSiteHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSiteHistorysConnection + siteHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSiteHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSiteHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Site Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSiteHistorysConnection """ Collection of Salesforce Solutions """ - solutions( - filter: SalesforceSolutionConnectionFilter - sortByCustomField: String - sortByField: SalesforceSolutionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSolutionsConnection + solutions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSolutionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSolutionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Solutions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSolutionsConnection """ Collection of Salesforce Business Processes """ - businessProcesses( - filter: SalesforceBusinessProcessConnectionFilter - sortByCustomField: String - sortByField: SalesforceBusinessProcessSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceBusinessProcesssConnection + businessProcesses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceBusinessProcessConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceBusinessProcessSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Business Processes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceBusinessProcesssConnection """ Collection of Salesforce User Provisioning Account Stagings """ - userProvAccountStagings( - filter: SalesforceUserProvAccountStagingConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserProvAccountStagingSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvAccountStagingsConnection + userProvAccountStagings(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvAccountStagingConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvAccountStagingSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User Provisioning Account Stagings to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvAccountStagingsConnection """ Collection of Salesforce Flow Interview Shares """ - flowInterviewShares( - filter: SalesforceFlowInterviewShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceFlowInterviewShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowInterviewSharesConnection + flowInterviewShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowInterviewShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowInterviewShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Flow Interview Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowInterviewSharesConnection """ Collection of Salesforce Org Delete Request Shares """ - orgDeleteRequestShares( - filter: SalesforceOrgDeleteRequestShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrgDeleteRequestSharesConnection + orgDeleteRequestShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrgDeleteRequestShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Org Delete Request Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrgDeleteRequestSharesConnection """ Collection of Salesforce Apex Test Results """ - apexTestResults( - filter: SalesforceApexTestResultConnectionFilter - sortByCustomField: String - sortByField: SalesforceApexTestResultSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestResultsConnection + apexTestResults(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestResultConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestResultSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Apex Test Results to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestResultsConnection """ Collection of Salesforce Folders """ - folders( - filter: SalesforceFolderConnectionFilter - sortByCustomField: String - sortByField: SalesforceFolderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFoldersConnection + folders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFolderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFolderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Folders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFoldersConnection """ Collection of Salesforce Quick Text Shares """ - quickTextShares( - filter: SalesforceQuickTextShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceQuickTextShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceQuickTextSharesConnection + quickTextShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceQuickTextShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceQuickTextShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Quick Text Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceQuickTextSharesConnection """ Collection of Salesforce Authentication Configuration Auth. Providers """ - authConfigProvidersPlural( - filter: SalesforceAuthConfigProvidersConnectionFilter - sortByCustomField: String - sortByField: SalesforceAuthConfigProvidersSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthConfigProviderssConnection + authConfigProvidersPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthConfigProvidersConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Authentication Configuration Auth. Providers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthConfigProviderssConnection """ Collection of Salesforce Products """ - product2s( - filter: SalesforceProduct2ConnectionFilter - sortByCustomField: String - sortByField: SalesforceProduct2SortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProduct2sConnection + product2s(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProduct2ConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProduct2SortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Products to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProduct2sConnection """ Collection of Salesforce Accepted Event Relations """ - acceptedEventRelations( - filter: SalesforceAcceptedEventRelationConnectionFilter - sortByCustomField: String - sortByField: SalesforceAcceptedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAcceptedEventRelationsConnection + acceptedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAcceptedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Accepted Event Relations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAcceptedEventRelationsConnection """ Collection of Salesforce Session Permission Set Activations """ - sessionPermSetActivations( - filter: SalesforceSessionPermSetActivationConnectionFilter - sortByCustomField: String - sortByField: SalesforceSessionPermSetActivationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSessionPermSetActivationsConnection + sessionPermSetActivations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSessionPermSetActivationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Session Permission Set Activations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSessionPermSetActivationsConnection """ Collection of Salesforce Zones """ - communities( - filter: SalesforceCommunityConnectionFilter - sortByCustomField: String - sortByField: SalesforceCommunitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCommunitysConnection + communities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCommunityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCommunitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Zones to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCommunitysConnection """ Collection of Salesforce Lead Status Values """ - leadStatuses( - filter: SalesforceLeadStatusConnectionFilter - sortByCustomField: String - sortByField: SalesforceLeadStatusSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadStatussConnection + leadStatuses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadStatusConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadStatusSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Lead Status Values to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadStatussConnection """ Collection of Salesforce Email Services """ - emailServicesFunctions( - filter: SalesforceEmailServicesFunctionConnectionFilter - sortByCustomField: String - sortByField: SalesforceEmailServicesFunctionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailServicesFunctionsConnection + emailServicesFunctions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailServicesFunctionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailServicesFunctionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Email Services to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailServicesFunctionsConnection """ Collection of Salesforce Matching Rules """ - matchingRules( - filter: SalesforceMatchingRuleConnectionFilter - sortByCustomField: String - sortByField: SalesforceMatchingRuleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMatchingRulesConnection + matchingRules(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMatchingRuleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMatchingRuleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Matching Rules to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMatchingRulesConnection """ Collection of Salesforce Organization-wide From Email Addresses """ - orgWideEmailAddresses( - filter: SalesforceOrgWideEmailAddressConnectionFilter - sortByCustomField: String - sortByField: SalesforceOrgWideEmailAddressSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrgWideEmailAddresssConnection + orgWideEmailAddresses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrgWideEmailAddressConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrgWideEmailAddressSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Organization-wide From Email Addresses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrgWideEmailAddresssConnection """ Collection of Salesforce Email Message Relations """ - emailMessageRelations( - filter: SalesforceEmailMessageRelationConnectionFilter - sortByCustomField: String - sortByField: SalesforceEmailMessageRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessageRelationsConnection + emailMessageRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Email Message Relations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessageRelationsConnection """ Collection of Salesforce Knowledgeable Users """ - knowledgeableUsers( - filter: SalesforceKnowledgeableUserConnectionFilter - sortByCustomField: String - sortByField: SalesforceKnowledgeableUserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceKnowledgeableUsersConnection + knowledgeableUsers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceKnowledgeableUserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceKnowledgeableUserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Knowledgeable Users to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceKnowledgeableUsersConnection """ Collection of Salesforce Setup Audit Trail Entries """ - setupAuditTrails( - filter: SalesforceSetupAuditTrailConnectionFilter - sortByCustomField: String - sortByField: SalesforceSetupAuditTrailSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSetupAuditTrailsConnection + setupAuditTrails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSetupAuditTrailConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSetupAuditTrailSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Setup Audit Trail Entries to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSetupAuditTrailsConnection """ Collection of Salesforce Scheduled Jobs """ - cronTriggers( - filter: SalesforceCronTriggerConnectionFilter - sortByCustomField: String - sortByField: SalesforceCronTriggerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCronTriggersConnection + cronTriggers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCronTriggerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCronTriggerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Scheduled Jobs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCronTriggersConnection """ Collection of Salesforce Setting Granted By Licenses """ - grantedByLicenses( - filter: SalesforceGrantedByLicenseConnectionFilter - sortByCustomField: String - sortByField: SalesforceGrantedByLicenseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceGrantedByLicensesConnection + grantedByLicenses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceGrantedByLicenseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Setting Granted By Licenses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceGrantedByLicensesConnection """ Collection of Salesforce Content Security Policy Trusted Sites """ - cspTrustedSites( - filter: SalesforceCspTrustedSiteConnectionFilter - sortByCustomField: String - sortByField: SalesforceCspTrustedSiteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCspTrustedSitesConnection + cspTrustedSites(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCspTrustedSiteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCspTrustedSiteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Security Policy Trusted Sites to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCspTrustedSitesConnection """ Collection of Salesforce Solution Histories """ - solutionHistories( - filter: SalesforceSolutionHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceSolutionHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSolutionHistorysConnection + solutionHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSolutionHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSolutionHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Solution Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSolutionHistorysConnection """ Collection of Salesforce Content Tag Subscriptions """ - contentTagSubscriptions( - filter: SalesforceContentTagSubscriptionConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentTagSubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentTagSubscriptionsConnection + contentTagSubscriptions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentTagSubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentTagSubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Tag Subscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentTagSubscriptionsConnection """ Collection of Salesforce Contracts """ - contracts( - filter: SalesforceContractConnectionFilter - sortByCustomField: String - sortByField: SalesforceContractSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractsConnection + contracts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contracts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractsConnection """ Collection of Salesforce Document Entity Maps """ - documentAttachmentMaps( - filter: SalesforceDocumentAttachmentMapConnectionFilter - sortByCustomField: String - sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDocumentAttachmentMapsConnection + documentAttachmentMaps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDocumentAttachmentMapConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Document Entity Maps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDocumentAttachmentMapsConnection """ Collection of Salesforce Macro Instructions """ - macroInstructions( - filter: SalesforceMacroInstructionConnectionFilter - sortByCustomField: String - sortByField: SalesforceMacroInstructionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMacroInstructionsConnection + macroInstructions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMacroInstructionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMacroInstructionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Macro Instructions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMacroInstructionsConnection """ Collection of Salesforce Custom Permissions """ - customPermissions( - filter: SalesforceCustomPermissionConnectionFilter - sortByCustomField: String - sortByField: SalesforceCustomPermissionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomPermissionsConnection + customPermissions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomPermissionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomPermissionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Custom Permissions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomPermissionsConnection """ Collection of Salesforce Contract Feeds """ - contractFeeds( - filter: SalesforceContractFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceContractFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractFeedsConnection + contractFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contract Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractFeedsConnection """ Collection of Salesforce Library Permissions """ - contentWorkspacePermissions( - filter: SalesforceContentWorkspacePermissionConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentWorkspacePermissionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspacePermissionsConnection + contentWorkspacePermissions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspacePermissionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspacePermissionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Library Permissions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspacePermissionsConnection """ Collection of Salesforce Business Hours """ - businessHoursPlural( - filter: SalesforceBusinessHoursConnectionFilter - sortByCustomField: String - sortByField: SalesforceBusinessHoursSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceBusinessHourssConnection + businessHoursPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceBusinessHoursConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceBusinessHoursSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Business Hours to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceBusinessHourssConnection """ Collection of Salesforce Macro Histories """ - macroHistories( - filter: SalesforceMacroHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceMacroHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMacroHistorysConnection + macroHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMacroHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMacroHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Macro Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMacroHistorysConnection """ Collection of Salesforce Users """ - users( - filter: SalesforceUserConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUsersConnection + users(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Users to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUsersConnection """ Collection of Salesforce Dashboards """ - dashboards( - filter: SalesforceDashboardConnectionFilter - sortByCustomField: String - sortByField: SalesforceDashboardSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDashboardsConnection + dashboards(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDashboardConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDashboardSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Dashboards to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDashboardsConnection """ Collection of Salesforce Content Notifications """ - contentNotifications( - filter: SalesforceContentNotificationConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentNotificationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentNotificationsConnection + contentNotifications(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentNotificationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentNotificationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Notifications to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentNotificationsConnection """ Collection of Salesforce Case Contact Roles """ - caseContactRoles( - filter: SalesforceCaseContactRoleConnectionFilter - sortByCustomField: String - sortByField: SalesforceCaseContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseContactRolesConnection + caseContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Case Contact Roles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseContactRolesConnection """ Collection of Salesforce Test Suite Memberships """ - testSuiteMemberships( - filter: SalesforceTestSuiteMembershipConnectionFilter - sortByCustomField: String - sortByField: SalesforceTestSuiteMembershipSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTestSuiteMembershipsConnection + testSuiteMemberships(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTestSuiteMembershipConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Test Suite Memberships to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTestSuiteMembershipsConnection """ Collection of Salesforce Order Shares """ - orderShares( - filter: SalesforceOrderShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceOrderShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderSharesConnection + orderShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Order Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderSharesConnection """ Collection of Salesforce UserAppMenuCustomizations """ - userAppMenuCustomizations( - filter: SalesforceUserAppMenuCustomizationConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserAppMenuCustomizationsConnection + userAppMenuCustomizations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserAppMenuCustomizationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserAppMenuCustomizations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserAppMenuCustomizationsConnection """ Collection of Salesforce Topic User Events """ - topicUserEvents( - filter: SalesforceTopicUserEventConnectionFilter - sortByCustomField: String - sortByField: SalesforceTopicUserEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicUserEventsConnection + topicUserEvents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicUserEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicUserEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Topic User Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicUserEventsConnection """ Collection of Salesforce Announcements """ - announcements( - filter: SalesforceAnnouncementConnectionFilter - sortByCustomField: String - sortByField: SalesforceAnnouncementSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAnnouncementsConnection + announcements(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAnnouncementConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAnnouncementSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Announcements to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAnnouncementsConnection """ Collection of Salesforce External Data User Authentications """ - externalDataUserAuths( - filter: SalesforceExternalDataUserAuthConnectionFilter - sortByCustomField: String - sortByField: SalesforceExternalDataUserAuthSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceExternalDataUserAuthsConnection + externalDataUserAuths(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceExternalDataUserAuthConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of External Data User Authentications to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceExternalDataUserAuthsConnection """ Collection of Salesforce Promoted Search Terms """ - searchPromotionRules( - filter: SalesforceSearchPromotionRuleConnectionFilter - sortByCustomField: String - sortByField: SalesforceSearchPromotionRuleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSearchPromotionRulesConnection + searchPromotionRules(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSearchPromotionRuleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSearchPromotionRuleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Promoted Search Terms to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSearchPromotionRulesConnection """ Collection of Salesforce Lead Clean Infos """ - leadCleanInfos( - filter: SalesforceLeadCleanInfoConnectionFilter - sortByCustomField: String - sortByField: SalesforceLeadCleanInfoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadCleanInfosConnection + leadCleanInfos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadCleanInfoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Lead Clean Infos to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadCleanInfosConnection """ Collection of Salesforce Events """ - events( - filter: SalesforceEventConnectionFilter - sortByCustomField: String - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + events(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce Process Definitions """ - processDefinitions( - filter: SalesforceProcessDefinitionConnectionFilter - sortByCustomField: String - sortByField: SalesforceProcessDefinitionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessDefinitionsConnection + processDefinitions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessDefinitionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessDefinitionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Process Definitions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessDefinitionsConnection """ Collection of Salesforce Permission Set Licenses """ - permissionSetLicenses( - filter: SalesforcePermissionSetLicenseConnectionFilter - sortByCustomField: String - sortByField: SalesforcePermissionSetLicenseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePermissionSetLicensesConnection + permissionSetLicenses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePermissionSetLicenseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePermissionSetLicenseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Permission Set Licenses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePermissionSetLicensesConnection """ Collection of Salesforce Campaign Member Statuses """ - campaignMemberStatuses( - filter: SalesforceCampaignMemberStatusConnectionFilter - sortByCustomField: String - sortByField: SalesforceCampaignMemberStatusSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignMemberStatussConnection + campaignMemberStatuses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignMemberStatusConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignMemberStatusSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Campaign Member Statuses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignMemberStatussConnection """ Collection of Salesforce Content Versions """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Versions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce Security Custom Baselines """ - securityCustomBaselines( - filter: SalesforceSecurityCustomBaselineConnectionFilter - sortByCustomField: String - sortByField: SalesforceSecurityCustomBaselineSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSecurityCustomBaselinesConnection + securityCustomBaselines(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSecurityCustomBaselineConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSecurityCustomBaselineSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Security Custom Baselines to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSecurityCustomBaselinesConnection """ Collection of Salesforce Data Assessment Field Metrics """ - dataAssessmentFieldMetrics( - filter: SalesforceDataAssessmentFieldMetricConnectionFilter - sortByCustomField: String - sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDataAssessmentFieldMetricsConnection + dataAssessmentFieldMetrics(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDataAssessmentFieldMetricConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Data Assessment Field Metrics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDataAssessmentFieldMetricsConnection """ Collection of Salesforce Lightning Component Definitions """ - auraDefinitions( - filter: SalesforceAuraDefinitionConnectionFilter - sortByCustomField: String - sortByField: SalesforceAuraDefinitionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuraDefinitionsConnection + auraDefinitions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuraDefinitionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuraDefinitionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Lightning Component Definitions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuraDefinitionsConnection """ Collection of Salesforce Data.com Usages """ - datacloudPurchaseUsages( - filter: SalesforceDatacloudPurchaseUsageConnectionFilter - sortByCustomField: String - sortByField: SalesforceDatacloudPurchaseUsageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDatacloudPurchaseUsagesConnection + datacloudPurchaseUsages(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDatacloudPurchaseUsageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDatacloudPurchaseUsageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Data.com Usages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDatacloudPurchaseUsagesConnection """ Collection of Salesforce Contacts """ - contacts( - filter: SalesforceContactConnectionFilter - sortByCustomField: String - sortByField: SalesforceContactSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactsConnection + contacts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contacts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactsConnection """ Collection of Salesforce Content Documents """ - contentDocuments( - filter: SalesforceContentDocumentConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentDocumentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentsConnection + contentDocuments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Documents to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentsConnection """ Collection of Salesforce Lead Histories """ - leadHistories( - filter: SalesforceLeadHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceLeadHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadHistorysConnection + leadHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Lead Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadHistorysConnection """ Collection of Salesforce Email Templates """ - emailTemplates( - filter: SalesforceEmailTemplateConnectionFilter - sortByCustomField: String - sortByField: SalesforceEmailTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailTemplatesConnection + emailTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Email Templates to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailTemplatesConnection """ Collection of Salesforce Content Version Ratings """ - contentVersionRatings( - filter: SalesforceContentVersionRatingConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentVersionRatingSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionRatingsConnection + contentVersionRatings(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionRatingConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionRatingSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Version Ratings to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionRatingsConnection """ Collection of Salesforce Quick Text Histories """ - quickTextHistories( - filter: SalesforceQuickTextHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceQuickTextHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceQuickTextHistorysConnection + quickTextHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceQuickTextHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceQuickTextHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Quick Text Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceQuickTextHistorysConnection """ Collection of Salesforce Authentication Configurations """ - authConfigs( - filter: SalesforceAuthConfigConnectionFilter - sortByCustomField: String - sortByField: SalesforceAuthConfigSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthConfigsConnection + authConfigs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthConfigConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthConfigSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Authentication Configurations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthConfigsConnection """ Collection of Salesforce Topics """ - topics( - filter: SalesforceTopicConnectionFilter - sortByCustomField: String - sortByField: SalesforceTopicSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicsConnection + topics(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Topics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicsConnection """ Collection of Salesforce Task Priority Values """ - taskPriorities( - filter: SalesforceTaskPriorityConnectionFilter - sortByCustomField: String - sortByField: SalesforceTaskPrioritySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTaskPrioritysConnection + taskPriorities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskPriorityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskPrioritySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Task Priority Values to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTaskPrioritysConnection """ Collection of Salesforce Apex Test Suites """ - apexTestSuites( - filter: SalesforceApexTestSuiteConnectionFilter - sortByCustomField: String - sortByField: SalesforceApexTestSuiteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestSuitesConnection + apexTestSuites(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestSuiteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestSuiteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Apex Test Suites to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestSuitesConnection """ Collection of Salesforce Reports """ - reports( - filter: SalesforceReportConnectionFilter - sortByCustomField: String - sortByField: SalesforceReportSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceReportsConnection + reports(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceReportConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceReportSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Reports to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceReportsConnection """ Collection of Salesforce Visualforce Access Metrics """ - visualforceAccessMetricsPlural( - filter: SalesforceVisualforceAccessMetricsConnectionFilter - sortByCustomField: String - sortByField: SalesforceVisualforceAccessMetricsSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceVisualforceAccessMetricssConnection + visualforceAccessMetricsPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceVisualforceAccessMetricsConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceVisualforceAccessMetricsSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Visualforce Access Metrics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceVisualforceAccessMetricssConnection """ Collection of Salesforce Auth Sessions """ - authSessions( - filter: SalesforceAuthSessionConnectionFilter - sortByCustomField: String - sortByField: SalesforceAuthSessionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthSessionsConnection + authSessions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthSessionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthSessionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Auth Sessions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthSessionsConnection """ Collection of Salesforce Library Members """ - contentWorkspaceMembers( - filter: SalesforceContentWorkspaceMemberConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspaceMembersConnection + contentWorkspaceMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Library Members to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspaceMembersConnection """ Collection of Salesforce Queue Sobjects """ - queueSobjects( - filter: SalesforceQueueSobjectConnectionFilter - sortByCustomField: String - sortByField: SalesforceQueueSobjectSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceQueueSobjectsConnection + queueSobjects(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceQueueSobjectConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceQueueSobjectSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Queue Sobjects to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceQueueSobjectsConnection """ Collection of Salesforce Identity Verification Histories """ - verificationHistories( - filter: SalesforceVerificationHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceVerificationHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceVerificationHistorysConnection + verificationHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceVerificationHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceVerificationHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Identity Verification Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceVerificationHistorysConnection """ Collection of Salesforce Domains """ - domains( - filter: SalesforceDomainConnectionFilter - sortByCustomField: String - sortByField: SalesforceDomainSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDomainsConnection + domains(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDomainConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDomainSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Domains to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDomainsConnection """ Collection of Salesforce Connected Apps """ - connectedApplications( - filter: SalesforceConnectedApplicationConnectionFilter - sortByCustomField: String - sortByField: SalesforceConnectedApplicationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceConnectedApplicationsConnection + connectedApplications(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceConnectedApplicationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceConnectedApplicationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Connected Apps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceConnectedApplicationsConnection """ Collection of Salesforce Dashboard Components """ - dashboardComponents( - filter: SalesforceDashboardComponentConnectionFilter - sortByCustomField: String - sortByField: SalesforceDashboardComponentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDashboardComponentsConnection + dashboardComponents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDashboardComponentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDashboardComponentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Dashboard Components to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDashboardComponentsConnection """ Collection of Salesforce ContentDocument Feeds """ - contentDocumentFeeds( - filter: SalesforceContentDocumentFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentDocumentFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentFeedsConnection + contentDocumentFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocument Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentFeedsConnection """ Collection of Salesforce Libraries """ - contentWorkspaces( - filter: SalesforceContentWorkspaceConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentWorkspaceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspacesConnection + contentWorkspaces(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Libraries to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspacesConnection """ Collection of Salesforce Content Folder Members """ - contentFolderMembers( - filter: SalesforceContentFolderMemberConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentFolderMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentFolderMembersConnection + contentFolderMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentFolderMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentFolderMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Folder Members to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentFolderMembersConnection """ Collection of Salesforce Asset Relationship Histories """ - assetRelationshipHistories( - filter: SalesforceAssetRelationshipHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetRelationshipHistorysConnection + assetRelationshipHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetRelationshipHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Asset Relationship Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetRelationshipHistorysConnection """ Collection of Salesforce Call Centers """ - callCenters( - filter: SalesforceCallCenterConnectionFilter - sortByCustomField: String - sortByField: SalesforceCallCenterSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCallCentersConnection + callCenters(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCallCenterConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCallCenterSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Call Centers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCallCentersConnection """ Collection of Salesforce Case Team Members """ - caseTeamMembers( - filter: SalesforceCaseTeamMemberConnectionFilter - sortByCustomField: String - sortByField: SalesforceCaseTeamMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseTeamMembersConnection + caseTeamMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseTeamMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Case Team Members to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseTeamMembersConnection """ Collection of Salesforce Mail Merge Templates """ - mailmergeTemplates( - filter: SalesforceMailmergeTemplateConnectionFilter - sortByCustomField: String - sortByField: SalesforceMailmergeTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMailmergeTemplatesConnection + mailmergeTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMailmergeTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMailmergeTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Mail Merge Templates to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMailmergeTemplatesConnection """ Collection of Salesforce Custom Object Usage By User License Metrics """ - customObjectUserLicenseMetricsPlural( - filter: SalesforceCustomObjectUserLicenseMetricsConnectionFilter - sortByCustomField: String - sortByField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomObjectUserLicenseMetricssConnection + customObjectUserLicenseMetricsPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomObjectUserLicenseMetricsConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Custom Object Usage By User License Metrics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomObjectUserLicenseMetricssConnection """ Collection of Salesforce List Views """ - listViews( - filter: SalesforceListViewConnectionFilter - sortByCustomField: String - sortByField: SalesforceListViewSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceListViewsConnection + listViews(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceListViewConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceListViewSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of List Views to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceListViewsConnection """ Collection of Salesforce Org Delete Requests """ - orgDeleteRequests( - filter: SalesforceOrgDeleteRequestConnectionFilter - sortByCustomField: String - sortByField: SalesforceOrgDeleteRequestSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrgDeleteRequestsConnection + orgDeleteRequests(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrgDeleteRequestConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrgDeleteRequestSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Org Delete Requests to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrgDeleteRequestsConnection """ Collection of Salesforce Group Feeds """ - collaborationGroupFeeds( - filter: SalesforceCollaborationGroupFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupFeedsConnection + collaborationGroupFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Group Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupFeedsConnection """ Collection of Salesforce User Preferences """ - userPreferences( - filter: SalesforceUserPreferenceConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserPreferenceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserPreferencesConnection + userPreferences(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserPreferenceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserPreferenceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User Preferences to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserPreferencesConnection """ Collection of Salesforce Group Members """ - collaborationGroupMembers( - filter: SalesforceCollaborationGroupMemberConnectionFilter - sortByCustomField: String - sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupMembersConnection + collaborationGroupMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Group Members to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupMembersConnection """ Collection of Salesforce Opportunity Field Histories """ - opportunityFieldHistories( - filter: SalesforceOpportunityFieldHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityFieldHistorysConnection + opportunityFieldHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityFieldHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Opportunity Field Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityFieldHistorysConnection """ Collection of Salesforce Account Histories """ - accountHistories( - filter: SalesforceAccountHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceAccountHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountHistorysConnection + accountHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Account Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountHistorysConnection """ Collection of Salesforce SAML Single Sign-On Settings """ - samlSsoConfigs( - filter: SalesforceSamlSsoConfigConnectionFilter - sortByCustomField: String - sortByField: SalesforceSamlSsoConfigSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSamlSsoConfigsConnection + samlSsoConfigs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSamlSsoConfigConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSamlSsoConfigSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SAML Single Sign-On Settings to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSamlSsoConfigsConnection """ Collection of Salesforce Opportunity Shares """ - opportunityShares( - filter: SalesforceOpportunityShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceOpportunityShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunitySharesConnection + opportunityShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Opportunity Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunitySharesConnection """ Collection of Salesforce Event Log Files """ - eventLogFiles( - filter: SalesforceEventLogFileConnectionFilter - sortByCustomField: String - sortByField: SalesforceEventLogFileSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventLogFilesConnection + eventLogFiles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventLogFileConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventLogFileSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Event Log Files to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventLogFilesConnection """ Collection of Salesforce Asset Relationships """ - assetRelationships( - filter: SalesforceAssetRelationshipConnectionFilter - sortByCustomField: String - sortByField: SalesforceAssetRelationshipSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetRelationshipsConnection + assetRelationships(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetRelationshipConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetRelationshipSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Asset Relationships to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetRelationshipsConnection """ Collection of Salesforce Event Feeds """ - eventFeeds( - filter: SalesforceEventFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceEventFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventFeedsConnection + eventFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Event Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventFeedsConnection """ Collection of Salesforce Roles """ - userRoles( - filter: SalesforceUserRoleConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserRolesConnection + userRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Roles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserRolesConnection """ Collection of Salesforce Opportunity Contact Roles """ - opportunityContactRoles( - filter: SalesforceOpportunityContactRoleConnectionFilter - sortByCustomField: String - sortByField: SalesforceOpportunityContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityContactRolesConnection + opportunityContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Opportunity Contact Roles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityContactRolesConnection """ Collection of Salesforce Case Solutions """ - caseSolutions( - filter: SalesforceCaseSolutionConnectionFilter - sortByCustomField: String - sortByField: SalesforceCaseSolutionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseSolutionsConnection + caseSolutions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseSolutionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseSolutionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Case Solutions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseSolutionsConnection """ Collection of Salesforce EmailCaptures """ - emailCaptures( - filter: SalesforceEmailCaptureConnectionFilter - sortByCustomField: String - sortByField: SalesforceEmailCaptureSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailCapturesConnection + emailCaptures(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailCaptureConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailCaptureSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailCaptures to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailCapturesConnection """ Collection of Salesforce Accounts """ - accounts( - filter: SalesforceAccountConnectionFilter - sortByCustomField: String - sortByField: SalesforceAccountSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountsConnection + accounts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Accounts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountsConnection """ Collection of Salesforce Profiles """ - profiles( - filter: SalesforceProfileConnectionFilter - sortByCustomField: String - sortByField: SalesforceProfileSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProfilesConnection + profiles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProfileConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProfileSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Profiles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProfilesConnection """ Collection of Salesforce Opportunity Stages """ - opportunityStages( - filter: SalesforceOpportunityStageConnectionFilter - sortByCustomField: String - sortByField: SalesforceOpportunityStageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityStagesConnection + opportunityStages(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityStageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityStageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Opportunity Stages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityStagesConnection """ Collection of Salesforce Content Folder Items """ - contentFolderItems( - filter: SalesforceContentFolderItemConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentFolderItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentFolderItemsConnection + contentFolderItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentFolderItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentFolderItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Folder Items to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentFolderItemsConnection """ Collection of Salesforce Action Link Templates """ - actionLinkTemplates( - filter: SalesforceActionLinkTemplateConnectionFilter - sortByCustomField: String - sortByField: SalesforceActionLinkTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceActionLinkTemplatesConnection + actionLinkTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceActionLinkTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceActionLinkTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Action Link Templates to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceActionLinkTemplatesConnection """ Collection of Salesforce Permission Sets """ - permissionSets( - filter: SalesforcePermissionSetConnectionFilter - sortByCustomField: String - sortByField: SalesforcePermissionSetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePermissionSetsConnection + permissionSets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePermissionSetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePermissionSetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Permission Sets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePermissionSetsConnection """ Collection of Salesforce Asset Relationship Feeds """ - assetRelationshipFeeds( - filter: SalesforceAssetRelationshipFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetRelationshipFeedsConnection + assetRelationshipFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetRelationshipFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Asset Relationship Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetRelationshipFeedsConnection """ Collection of Salesforce Campaign Members """ - campaignMembers( - filter: SalesforceCampaignMemberConnectionFilter - sortByCustomField: String - sortByField: SalesforceCampaignMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignMembersConnection + campaignMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Campaign Members to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignMembersConnection """ Collection of Salesforce Product Histories """ - product2Histories( - filter: SalesforceProduct2HistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceProduct2HistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProduct2HistorysConnection + product2Histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProduct2HistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProduct2HistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Product Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProduct2HistorysConnection """ Collection of Salesforce Contact Shares """ - contactShares( - filter: SalesforceContactShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceContactShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactSharesConnection + contactShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contact Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactSharesConnection """ Collection of Salesforce Asset Shares """ - assetShares( - filter: SalesforceAssetShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceAssetShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetSharesConnection + assetShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Asset Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetSharesConnection """ Collection of Salesforce Account Clean Infos """ - accountCleanInfos( - filter: SalesforceAccountCleanInfoConnectionFilter - sortByCustomField: String - sortByField: SalesforceAccountCleanInfoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountCleanInfosConnection + accountCleanInfos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountCleanInfoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Account Clean Infos to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountCleanInfosConnection """ Collection of Salesforce Package Licenses """ - packageLicenses( - filter: SalesforcePackageLicenseConnectionFilter - sortByCustomField: String - sortByField: SalesforcePackageLicenseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePackageLicensesConnection + packageLicenses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePackageLicenseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePackageLicenseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Package Licenses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePackageLicensesConnection """ Collection of Salesforce User Shares """ - userShares( - filter: SalesforceUserShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserSharesConnection + userShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserSharesConnection """ Collection of Salesforce Permission Set License Assignments """ - permissionSetLicenseAssigns( - filter: SalesforcePermissionSetLicenseAssignConnectionFilter - sortByCustomField: String - sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePermissionSetLicenseAssignsConnection + permissionSetLicenseAssigns(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Permission Set License Assignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePermissionSetLicenseAssignsConnection """ Collection of Salesforce User Provisioning Requests """ - userProvisioningRequests( - filter: SalesforceUserProvisioningRequestConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserProvisioningRequestSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningRequestsConnection + userProvisioningRequests(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningRequestConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User Provisioning Requests to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningRequestsConnection """ Collection of Salesforce User Package Licenses """ - userPackageLicenses( - filter: SalesforceUserPackageLicenseConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserPackageLicenseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserPackageLicensesConnection + userPackageLicenses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserPackageLicenseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserPackageLicenseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User Package Licenses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserPackageLicensesConnection """ Collection of Salesforce FileSearchActivities """ - fileSearchActivities( - filter: SalesforceFileSearchActivityConnectionFilter - sortByCustomField: String - sortByField: SalesforceFileSearchActivitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFileSearchActivitysConnection + fileSearchActivities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFileSearchActivityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFileSearchActivitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FileSearchActivities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFileSearchActivitysConnection """ Collection of Salesforce Case Feeds """ - caseFeeds( - filter: SalesforceCaseFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceCaseFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseFeedsConnection + caseFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Case Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseFeedsConnection """ Collection of Salesforce Partner Role Values """ - partnerRoles( - filter: SalesforcePartnerRoleConnectionFilter - sortByCustomField: String - sortByField: SalesforcePartnerRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePartnerRolesConnection + partnerRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePartnerRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePartnerRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Partner Role Values to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePartnerRolesConnection """ Collection of Salesforce Asset Feeds """ - assetFeeds( - filter: SalesforceAssetFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceAssetFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetFeedsConnection + assetFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Asset Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetFeedsConnection """ Collection of Salesforce Client Browsers """ - clientBrowsers( - filter: SalesforceClientBrowserConnectionFilter - sortByCustomField: String - sortByField: SalesforceClientBrowserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceClientBrowsersConnection + clientBrowsers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceClientBrowserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceClientBrowserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Client Browsers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceClientBrowsersConnection """ Collection of Salesforce Account Contact Roles """ - accountContactRoles( - filter: SalesforceAccountContactRoleConnectionFilter - sortByCustomField: String - sortByField: SalesforceAccountContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountContactRolesConnection + accountContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Account Contact Roles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountContactRolesConnection """ Collection of Salesforce List Emails """ - listEmails( - filter: SalesforceListEmailConnectionFilter - sortByCustomField: String - sortByField: SalesforceListEmailSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceListEmailsConnection + listEmails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceListEmailConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceListEmailSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of List Emails to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceListEmailsConnection """ Collection of Salesforce Record Types """ - recordTypes( - filter: SalesforceRecordTypeConnectionFilter - sortByCustomField: String - sortByField: SalesforceRecordTypeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceRecordTypesConnection + recordTypes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceRecordTypeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceRecordTypeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Record Types to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceRecordTypesConnection """ Collection of Salesforce Topic Feeds """ - topicFeeds( - filter: SalesforceTopicFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceTopicFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicFeedsConnection + topicFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Topic Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicFeedsConnection """ Collection of Salesforce Content Workspace Subscriptions """ - contentWorkspaceSubscriptions( - filter: SalesforceContentWorkspaceSubscriptionConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspaceSubscriptionsConnection + contentWorkspaceSubscriptions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceSubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Workspace Subscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspaceSubscriptionsConnection """ Collection of Salesforce Case Team Member Roles """ - caseTeamRoles( - filter: SalesforceCaseTeamRoleConnectionFilter - sortByCustomField: String - sortByField: SalesforceCaseTeamRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseTeamRolesConnection + caseTeamRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseTeamRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseTeamRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Case Team Member Roles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseTeamRolesConnection """ Collection of Salesforce Feed Attachments """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: String - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Feed Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce Tenant Usage Entitlements """ - tenantUsageEntitlements( - filter: SalesforceTenantUsageEntitlementConnectionFilter - sortByCustomField: String - sortByField: SalesforceTenantUsageEntitlementSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTenantUsageEntitlementsConnection + tenantUsageEntitlements(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTenantUsageEntitlementConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTenantUsageEntitlementSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tenant Usage Entitlements to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTenantUsageEntitlementsConnection """ Collection of Salesforce Content Document Histories """ - contentDocumentHistories( - filter: SalesforceContentDocumentHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentDocumentHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentHistorysConnection + contentDocumentHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Document Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentHistorysConnection """ Collection of Salesforce Custom URLs """ - domainSites( - filter: SalesforceDomainSiteConnectionFilter - sortByCustomField: String - sortByField: SalesforceDomainSiteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDomainSitesConnection + domainSites(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDomainSiteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDomainSiteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Custom URLs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDomainSitesConnection """ Collection of Salesforce Price Book Entries """ - pricebookEntries( - filter: SalesforcePricebookEntryConnectionFilter - sortByCustomField: String - sortByField: SalesforcePricebookEntrySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePricebookEntrysConnection + pricebookEntries(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePricebookEntryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePricebookEntrySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Price Book Entries to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePricebookEntrysConnection """ Collection of Salesforce Chatter Extension Configurations """ - chatterExtensionConfigs( - filter: SalesforceChatterExtensionConfigConnectionFilter - sortByCustomField: String - sortByField: SalesforceChatterExtensionConfigSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceChatterExtensionConfigsConnection + chatterExtensionConfigs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceChatterExtensionConfigConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceChatterExtensionConfigSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Chatter Extension Configurations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceChatterExtensionConfigsConnection """ Collection of Salesforce Campaign Feeds """ - campaignFeeds( - filter: SalesforceCampaignFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceCampaignFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignFeedsConnection + campaignFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Campaign Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignFeedsConnection """ Collection of Salesforce List Email Shares """ - listEmailShares( - filter: SalesforceListEmailShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceListEmailShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceListEmailSharesConnection + listEmailShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceListEmailShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceListEmailShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of List Email Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceListEmailSharesConnection """ Collection of Salesforce Fiscal Year Settings """ - fiscalYearSettingsPlural( - filter: SalesforceFiscalYearSettingsConnectionFilter - sortByCustomField: String - sortByField: SalesforceFiscalYearSettingsSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFiscalYearSettingssConnection + fiscalYearSettingsPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFiscalYearSettingsConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFiscalYearSettingsSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Fiscal Year Settings to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFiscalYearSettingssConnection """ Collection of Salesforce Category Datas """ - categoryDatas( - filter: SalesforceCategoryDataConnectionFilter - sortByCustomField: String - sortByField: SalesforceCategoryDataSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCategoryDatasConnection + categoryDatas(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCategoryDataConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCategoryDataSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Category Datas to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCategoryDatasConnection """ Collection of Salesforce Content Deliveries """ - contentDistributions( - filter: SalesforceContentDistributionConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentDistributionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionsConnection + contentDistributions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Deliveries to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionsConnection """ Collection of Salesforce Account Partners """ - accountPartners( - filter: SalesforceAccountPartnerConnectionFilter - sortByCustomField: String - sortByField: SalesforceAccountPartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountPartnersConnection + accountPartners(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountPartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountPartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Account Partners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountPartnersConnection """ Collection of Salesforce Content Folders """ - contentFolders( - filter: SalesforceContentFolderConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentFolderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentFoldersConnection + contentFolders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentFolderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentFolderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Folders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentFoldersConnection """ Collection of Salesforce Goal Shares """ - todayGoalShares( - filter: SalesforceTodayGoalShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceTodayGoalShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTodayGoalSharesConnection + todayGoalShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTodayGoalShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTodayGoalShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Goal Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTodayGoalSharesConnection """ Collection of Salesforce Identity Provider Event Logs """ - idpEventLogs( - filter: SalesforceIdpEventLogConnectionFilter - sortByCustomField: String - sortByField: SalesforceIdpEventLogSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceIdpEventLogsConnection + idpEventLogs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceIdpEventLogConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceIdpEventLogSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Identity Provider Event Logs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceIdpEventLogsConnection """ Collection of Salesforce Flow Interviews """ - flowInterviews( - filter: SalesforceFlowInterviewConnectionFilter - sortByCustomField: String - sortByField: SalesforceFlowInterviewSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowInterviewsConnection + flowInterviews(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowInterviewConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowInterviewSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Flow Interviews to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowInterviewsConnection """ Collection of Salesforce Solution Status Values """ - solutionStatuses( - filter: SalesforceSolutionStatusConnectionFilter - sortByCustomField: String - sortByField: SalesforceSolutionStatusSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSolutionStatussConnection + solutionStatuses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSolutionStatusConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSolutionStatusSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Solution Status Values to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSolutionStatussConnection """ Collection of Salesforce Static Resources """ - staticResources( - filter: SalesforceStaticResourceConnectionFilter - sortByCustomField: String - sortByField: SalesforceStaticResourceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceStaticResourcesConnection + staticResources(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceStaticResourceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceStaticResourceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Static Resources to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceStaticResourcesConnection """ Collection of Salesforce Solution Feeds """ - solutionFeeds( - filter: SalesforceSolutionFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceSolutionFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSolutionFeedsConnection + solutionFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSolutionFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSolutionFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Solution Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSolutionFeedsConnection """ Collection of Salesforce Event Relations """ - eventRelations( - filter: SalesforceEventRelationConnectionFilter - sortByCustomField: String - sortByField: SalesforceEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventRelationsConnection + eventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Event Relations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventRelationsConnection """ Collection of Salesforce Cron Jobs """ - cronJobDetails( - filter: SalesforceCronJobDetailConnectionFilter - sortByCustomField: String - sortByField: SalesforceCronJobDetailSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCronJobDetailsConnection + cronJobDetails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCronJobDetailConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCronJobDetailSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Cron Jobs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCronJobDetailsConnection """ Collection of Salesforce Price Book Histories """ - pricebook2Histories( - filter: SalesforcePricebook2HistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforcePricebook2HistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePricebook2HistorysConnection + pricebook2Histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePricebook2HistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePricebook2HistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Price Book Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePricebook2HistorysConnection """ Collection of Salesforce Case Shares """ - caseShares( - filter: SalesforceCaseShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceCaseShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseSharesConnection + caseShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Case Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseSharesConnection """ Collection of Salesforce Custom Button or Links """ - webLinks( - filter: SalesforceWebLinkConnectionFilter - sortByCustomField: String - sortByField: SalesforceWebLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceWebLinksConnection + webLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceWebLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceWebLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Custom Button or Links to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceWebLinksConnection """ Collection of Salesforce Feed Poll Choices """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: String - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Feed Poll Choices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce Order Product Histories """ - orderItemHistories( - filter: SalesforceOrderItemHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceOrderItemHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderItemHistorysConnection + orderItemHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderItemHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderItemHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Order Product Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderItemHistorysConnection """ Collection of Salesforce Leads """ - leads( - filter: SalesforceLeadConnectionFilter - sortByCustomField: String - sortByField: SalesforceLeadSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadsConnection + leads(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Leads to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadsConnection """ Collection of Salesforce Feed Comments """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: String - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Feed Comments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce External Data Sources """ - externalDataSources( - filter: SalesforceExternalDataSourceConnectionFilter - sortByCustomField: String - sortByField: SalesforceExternalDataSourceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceExternalDataSourcesConnection + externalDataSources(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceExternalDataSourceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceExternalDataSourceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of External Data Sources to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceExternalDataSourcesConnection """ Collection of Salesforce Sites """ - sites( - filter: SalesforceSiteConnectionFilter - sortByCustomField: String - sortByField: SalesforceSiteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSitesConnection + sites(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSiteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSiteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Sites to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSitesConnection """ Collection of Salesforce Login IPs """ - loginIps( - filter: SalesforceLoginIpConnectionFilter - sortByCustomField: String - sortByField: SalesforceLoginIpSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLoginIpsConnection + loginIps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLoginIpConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLoginIpSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Login IPs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLoginIpsConnection """ Collection of Salesforce Installed Mobile Apps """ - installedMobileApps( - filter: SalesforceInstalledMobileAppConnectionFilter - sortByCustomField: String - sortByField: SalesforceInstalledMobileAppSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceInstalledMobileAppsConnection + installedMobileApps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceInstalledMobileAppConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceInstalledMobileAppSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Installed Mobile Apps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceInstalledMobileAppsConnection """ Collection of Salesforce Email Domain Keys """ - emailDomainKeys( - filter: SalesforceEmailDomainKeyConnectionFilter - sortByCustomField: String - sortByField: SalesforceEmailDomainKeySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailDomainKeysConnection + emailDomainKeys(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailDomainKeyConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailDomainKeySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Email Domain Keys to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailDomainKeysConnection """ Collection of Salesforce Chatter Activities """ - chatterActivities( - filter: SalesforceChatterActivityConnectionFilter - sortByCustomField: String - sortByField: SalesforceChatterActivitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceChatterActivitysConnection + chatterActivities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceChatterActivityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceChatterActivitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Chatter Activities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceChatterActivitysConnection """ Collection of Salesforce Case Histories """ - caseHistories( - filter: SalesforceCaseHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceCaseHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseHistorysConnection + caseHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Case Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseHistorysConnection """ Collection of Salesforce Login Histories """ - loginHistories( - filter: SalesforceLoginHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceLoginHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLoginHistorysConnection + loginHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLoginHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLoginHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Login Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLoginHistorysConnection """ Collection of Salesforce Price Books """ - pricebook2s( - filter: SalesforcePricebook2ConnectionFilter - sortByCustomField: String - sortByField: SalesforcePricebook2SortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePricebook2sConnection + pricebook2s(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePricebook2ConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePricebook2SortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Price Books to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePricebook2sConnection """ Collection of Salesforce User Provisioning Mock Targets """ - userProvMockTargets( - filter: SalesforceUserProvMockTargetConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserProvMockTargetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvMockTargetsConnection + userProvMockTargets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvMockTargetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvMockTargetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User Provisioning Mock Targets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvMockTargetsConnection """ Collection of Salesforce Process Nodes """ - processNodes( - filter: SalesforceProcessNodeConnectionFilter - sortByCustomField: String - sortByField: SalesforceProcessNodeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessNodesConnection + processNodes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessNodeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessNodeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Process Nodes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessNodesConnection """ Collection of Salesforce Order Product Feeds """ - orderItemFeeds( - filter: SalesforceOrderItemFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceOrderItemFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderItemFeedsConnection + orderItemFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderItemFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderItemFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Order Product Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderItemFeedsConnection """ Collection of Salesforce List View Charts """ - listViewCharts( - filter: SalesforceListViewChartConnectionFilter - sortByCustomField: String - sortByField: SalesforceListViewChartSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceListViewChartsConnection + listViewCharts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceListViewChartConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceListViewChartSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of List View Charts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceListViewChartsConnection """ Collection of Salesforce Object Permissions """ - objectPermissionsPlural( - filter: SalesforceObjectPermissionsConnectionFilter - sortByCustomField: String - sortByField: SalesforceObjectPermissionsSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceObjectPermissionssConnection + objectPermissionsPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceObjectPermissionsConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceObjectPermissionsSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Object Permissions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceObjectPermissionssConnection """ Collection of Salesforce Process Instance Steps """ - processInstanceSteps( - filter: SalesforceProcessInstanceStepConnectionFilter - sortByCustomField: String - sortByField: SalesforceProcessInstanceStepSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstanceStepsConnection + processInstanceSteps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceStepConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Process Instance Steps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstanceStepsConnection """ Collection of Salesforce Predefined Case Teams """ - caseTeamTemplates( - filter: SalesforceCaseTeamTemplateConnectionFilter - sortByCustomField: String - sortByField: SalesforceCaseTeamTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseTeamTemplatesConnection + caseTeamTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseTeamTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseTeamTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Predefined Case Teams to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseTeamTemplatesConnection """ Collection of Salesforce Apex Test Result Limits """ - apexTestResultLimitsPlural( - filter: SalesforceApexTestResultLimitsConnectionFilter - sortByCustomField: String - sortByField: SalesforceApexTestResultLimitsSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestResultLimitssConnection + apexTestResultLimitsPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestResultLimitsConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestResultLimitsSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Apex Test Result Limits to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestResultLimitssConnection """ Collection of Salesforce Predefined Case Team Members """ - caseTeamTemplateMembers( - filter: SalesforceCaseTeamTemplateMemberConnectionFilter - sortByCustomField: String - sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseTeamTemplateMembersConnection + caseTeamTemplateMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseTeamTemplateMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Predefined Case Team Members to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseTeamTemplateMembersConnection """ Collection of Salesforce Wave Compatibility Check Items """ - waveCompatibilityCheckItems( - filter: SalesforceWaveCompatibilityCheckItemConnectionFilter - sortByCustomField: String - sortByField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceWaveCompatibilityCheckItemsConnection + waveCompatibilityCheckItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceWaveCompatibilityCheckItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Wave Compatibility Check Items to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceWaveCompatibilityCheckItemsConnection """ Collection of Salesforce Group Members """ - groupMembers( - filter: SalesforceGroupMemberConnectionFilter - sortByCustomField: String - sortByField: SalesforceGroupMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceGroupMembersConnection + groupMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceGroupMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceGroupMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Group Members to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceGroupMembersConnection """ Collection of Salesforce Predefined Case Team Records """ - caseTeamTemplateRecords( - filter: SalesforceCaseTeamTemplateRecordConnectionFilter - sortByCustomField: String - sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseTeamTemplateRecordsConnection + caseTeamTemplateRecords(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseTeamTemplateRecordConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Predefined Case Team Records to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseTeamTemplateRecordsConnection """ Collection of Salesforce Background Operations """ - backgroundOperations( - filter: SalesforceBackgroundOperationConnectionFilter - sortByCustomField: String - sortByField: SalesforceBackgroundOperationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceBackgroundOperationsConnection + backgroundOperations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceBackgroundOperationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceBackgroundOperationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Background Operations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceBackgroundOperationsConnection """ Collection of Salesforce Idea Comments """ - ideaComments( - filter: SalesforceIdeaCommentConnectionFilter - sortByCustomField: String - sortByField: SalesforceIdeaCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceIdeaCommentsConnection + ideaComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceIdeaCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceIdeaCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Idea Comments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceIdeaCommentsConnection """ Collection of Salesforce Opportunity: Competitors """ - opportunityCompetitors( - filter: SalesforceOpportunityCompetitorConnectionFilter - sortByCustomField: String - sortByField: SalesforceOpportunityCompetitorSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityCompetitorsConnection + opportunityCompetitors(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityCompetitorConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityCompetitorSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Opportunity: Competitors to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityCompetitorsConnection """ Collection of Salesforce Content Document Links """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Document Links to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce Chatter Extensions """ - chatterExtensions( - filter: SalesforceChatterExtensionConnectionFilter - sortByCustomField: String - sortByField: SalesforceChatterExtensionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceChatterExtensionsConnection + chatterExtensions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceChatterExtensionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceChatterExtensionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Chatter Extensions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceChatterExtensionsConnection """ Collection of Salesforce Order Histories """ - orderHistories( - filter: SalesforceOrderHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceOrderHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderHistorysConnection + orderHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Order Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderHistorysConnection """ Collection of Salesforce CORS Whitelist Origins """ - corsWhitelistEntries( - filter: SalesforceCorsWhitelistEntryConnectionFilter - sortByCustomField: String - sortByField: SalesforceCorsWhitelistEntrySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCorsWhitelistEntrysConnection + corsWhitelistEntries(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCorsWhitelistEntryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCorsWhitelistEntrySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CORS Whitelist Origins to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCorsWhitelistEntrysConnection """ Collection of Salesforce Feed Poll Votes """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: String - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Feed Poll Votes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection """ Collection of Salesforce Secure Agent Clusters """ - secureAgentsClusters( - filter: SalesforceSecureAgentsClusterConnectionFilter - sortByCustomField: String - sortByField: SalesforceSecureAgentsClusterSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSecureAgentsClustersConnection + secureAgentsClusters(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSecureAgentsClusterConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSecureAgentsClusterSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Secure Agent Clusters to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSecureAgentsClustersConnection """ Collection of Salesforce Quick Texts """ - quickTexts( - filter: SalesforceQuickTextConnectionFilter - sortByCustomField: String - sortByField: SalesforceQuickTextSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceQuickTextsConnection + quickTexts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceQuickTextConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceQuickTextSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Quick Texts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceQuickTextsConnection """ Collection of Salesforce Product Feeds """ - product2Feeds( - filter: SalesforceProduct2FeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceProduct2FeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProduct2FeedsConnection + product2Feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProduct2FeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProduct2FeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Product Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProduct2FeedsConnection """ Collection of Salesforce Contact Feeds """ - contactFeeds( - filter: SalesforceContactFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceContactFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactFeedsConnection + contactFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contact Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactFeedsConnection """ Collection of Salesforce Secure Agents """ - secureAgents( - filter: SalesforceSecureAgentConnectionFilter - sortByCustomField: String - sortByField: SalesforceSecureAgentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSecureAgentsConnection + secureAgents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSecureAgentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSecureAgentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Secure Agents to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSecureAgentsConnection """ Collection of Salesforce Lead Shares """ - leadShares( - filter: SalesforceLeadShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceLeadShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadSharesConnection + leadShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Lead Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadSharesConnection """ Collection of Salesforce Duplicate Record Sets """ - duplicateRecordSets( - filter: SalesforceDuplicateRecordSetConnectionFilter - sortByCustomField: String - sortByField: SalesforceDuplicateRecordSetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDuplicateRecordSetsConnection + duplicateRecordSets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDuplicateRecordSetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDuplicateRecordSetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Duplicate Record Sets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDuplicateRecordSetsConnection """ Collection of Salesforce Contact Clean Infos """ - contactCleanInfos( - filter: SalesforceContactCleanInfoConnectionFilter - sortByCustomField: String - sortByField: SalesforceContactCleanInfoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactCleanInfosConnection + contactCleanInfos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactCleanInfoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactCleanInfoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contact Clean Infos to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactCleanInfosConnection """ Collection of Salesforce Setup Entity Accesses """ - setupEntityAccesses( - filter: SalesforceSetupEntityAccessConnectionFilter - sortByCustomField: String - sortByField: SalesforceSetupEntityAccessSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSetupEntityAccesssConnection + setupEntityAccesses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Setup Entity Accesses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSetupEntityAccesssConnection """ Collection of Salesforce Documents """ - documents( - filter: SalesforceDocumentConnectionFilter - sortByCustomField: String - sortByField: SalesforceDocumentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDocumentsConnection + documents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDocumentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDocumentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Documents to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDocumentsConnection """ Collection of Salesforce Opportunity Feeds """ - opportunityFeeds( - filter: SalesforceOpportunityFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceOpportunityFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityFeedsConnection + opportunityFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Opportunity Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityFeedsConnection """ Collection of Salesforce Groups """ - groups( - filter: SalesforceGroupConnectionFilter - sortByCustomField: String - sortByField: SalesforceGroupSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceGroupsConnection + groups(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceGroupConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceGroupSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Groups to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceGroupsConnection """ Collection of Salesforce Library Documents """ - contentWorkspaceDocs( - filter: SalesforceContentWorkspaceDocConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentWorkspaceDocSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspaceDocsConnection + contentWorkspaceDocs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceDocConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceDocSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Library Documents to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspaceDocsConnection """ Collection of Salesforce Platform Cache Partition Types """ - platformCachePartitionTypes( - filter: SalesforcePlatformCachePartitionTypeConnectionFilter - sortByCustomField: String - sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePlatformCachePartitionTypesConnection + platformCachePartitionTypes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePlatformCachePartitionTypeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Platform Cache Partition Types to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePlatformCachePartitionTypesConnection """ Collection of Salesforce Process Instance Nodes """ - processInstanceNodes( - filter: SalesforceProcessInstanceNodeConnectionFilter - sortByCustomField: String - sortByField: SalesforceProcessInstanceNodeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstanceNodesConnection + processInstanceNodes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceNodeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Process Instance Nodes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstanceNodesConnection """ Collection of Salesforce Contract Status Values """ - contractStatuses( - filter: SalesforceContractStatusConnectionFilter - sortByCustomField: String - sortByField: SalesforceContractStatusSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractStatussConnection + contractStatuses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractStatusConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractStatusSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contract Status Values to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractStatussConnection """ Collection of Salesforce D&B Companies """ - dandBCompanies( - filter: SalesforceDandBCompanyConnectionFilter - sortByCustomField: String - sortByField: SalesforceDandBCompanySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDandBCompanysConnection + dandBCompanies(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDandBCompanyConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDandBCompanySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of D&B Companies to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDandBCompanysConnection """ Collection of Salesforce User Provisioning Logs """ - userProvisioningLogs( - filter: SalesforceUserProvisioningLogConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserProvisioningLogSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningLogsConnection + userProvisioningLogs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningLogConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningLogSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User Provisioning Logs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningLogsConnection """ Collection of Salesforce Transaction Security Policies """ - transactionSecurityPolicies( - filter: SalesforceTransactionSecurityPolicyConnectionFilter - sortByCustomField: String - sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTransactionSecurityPolicysConnection + transactionSecurityPolicies(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTransactionSecurityPolicyConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Transaction Security Policies to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTransactionSecurityPolicysConnection """ Collection of Salesforce Login Geo Datas """ - loginGeos( - filter: SalesforceLoginGeoConnectionFilter - sortByCustomField: String - sortByField: SalesforceLoginGeoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLoginGeosConnection + loginGeos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLoginGeoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLoginGeoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Login Geo Datas to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLoginGeosConnection """ Collection of Salesforce Case Status Values """ - caseStatuses( - filter: SalesforceCaseStatusConnectionFilter - sortByCustomField: String - sortByField: SalesforceCaseStatusSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseStatussConnection + caseStatuses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseStatusConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseStatusSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Case Status Values to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseStatussConnection """ Collection of Salesforce Push Topics """ - pushTopics( - filter: SalesforcePushTopicConnectionFilter - sortByCustomField: String - sortByField: SalesforcePushTopicSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePushTopicsConnection + pushTopics(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePushTopicConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePushTopicSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Push Topics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePushTopicsConnection """ Collection of Salesforce Holidays """ - holidays( - filter: SalesforceHolidayConnectionFilter - sortByCustomField: String - sortByField: SalesforceHolidaySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceHolidaysConnection + holidays(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceHolidayConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceHolidaySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Holidays to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceHolidaysConnection """ Collection of Salesforce Contract Histories """ - contractHistories( - filter: SalesforceContractHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceContractHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractHistorysConnection + contractHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contract Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractHistorysConnection """ Collection of Salesforce Email Services Addresses """ - emailServicesAddresses( - filter: SalesforceEmailServicesAddressConnectionFilter - sortByCustomField: String - sortByField: SalesforceEmailServicesAddressSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailServicesAddresssConnection + emailServicesAddresses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailServicesAddressConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailServicesAddressSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Email Services Addresses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailServicesAddresssConnection """ Collection of Salesforce Macros """ - macros( - filter: SalesforceMacroConnectionFilter - sortByCustomField: String - sortByField: SalesforceMacroSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMacrosConnection + macros(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMacroConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMacroSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Macros to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMacrosConnection """ Collection of Salesforce Secure Agent Plug-in Properties """ - secureAgentPluginProperties( - filter: SalesforceSecureAgentPluginPropertyConnectionFilter - sortByCustomField: String - sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSecureAgentPluginPropertysConnection + secureAgentPluginProperties(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSecureAgentPluginPropertyConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Secure Agent Plug-in Properties to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSecureAgentPluginPropertysConnection """ Collection of Salesforce Field Permissions """ - fieldPermissionsPlural( - filter: SalesforceFieldPermissionsConnectionFilter - sortByCustomField: String - sortByField: SalesforceFieldPermissionsSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFieldPermissionssConnection + fieldPermissionsPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFieldPermissionsConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFieldPermissionsSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Field Permissions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFieldPermissionssConnection """ Collection of Salesforce Apex Test Queue Items """ - apexTestQueueItems( - filter: SalesforceApexTestQueueItemConnectionFilter - sortByCustomField: String - sortByField: SalesforceApexTestQueueItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestQueueItemsConnection + apexTestQueueItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestQueueItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Apex Test Queue Items to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestQueueItemsConnection """ Collection of Salesforce Stamps """ - stamps( - filter: SalesforceStampConnectionFilter - sortByCustomField: String - sortByField: SalesforceStampSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceStampsConnection + stamps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceStampConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceStampSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Stamps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceStampsConnection """ Collection of Salesforce Streaming Channels """ - streamingChannels( - filter: SalesforceStreamingChannelConnectionFilter - sortByCustomField: String - sortByField: SalesforceStreamingChannelSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceStreamingChannelsConnection + streamingChannels(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceStreamingChannelConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceStreamingChannelSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Streaming Channels to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceStreamingChannelsConnection """ Collection of Salesforce Content Version Comments """ - contentVersionComments( - filter: SalesforceContentVersionCommentConnectionFilter - sortByCustomField: String - sortByField: SalesforceContentVersionCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionCommentsConnection + contentVersionComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Content Version Comments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionCommentsConnection """ Collection of Salesforce Matching Rule Items """ - matchingRuleItems( - filter: SalesforceMatchingRuleItemConnectionFilter - sortByCustomField: String - sortByField: SalesforceMatchingRuleItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMatchingRuleItemsConnection + matchingRuleItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMatchingRuleItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMatchingRuleItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Matching Rule Items to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMatchingRuleItemsConnection """ Collection of Salesforce User Feeds """ - userFeeds( - filter: SalesforceUserFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserFeedsConnection + userFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserFeedsConnection """ Collection of Salesforce Task Status Values """ - taskStatuses( - filter: SalesforceTaskStatusConnectionFilter - sortByCustomField: String - sortByField: SalesforceTaskStatusSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTaskStatussConnection + taskStatuses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskStatusConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskStatusSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Task Status Values to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTaskStatussConnection """ Collection of Salesforce Campaign Field Histories """ - campaignHistories( - filter: SalesforceCampaignHistoryConnectionFilter - sortByCustomField: String - sortByField: SalesforceCampaignHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignHistorysConnection + campaignHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Campaign Field Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignHistorysConnection """ Collection of Salesforce Tasks """ - tasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: String - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection + tasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection """ Collection of Salesforce User Provisioning Configs """ - userProvisioningConfigs( - filter: SalesforceUserProvisioningConfigConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserProvisioningConfigSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningConfigsConnection + userProvisioningConfigs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningConfigConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User Provisioning Configs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningConfigsConnection """ Collection of Salesforce Declined Event Relations """ - declinedEventRelations( - filter: SalesforceDeclinedEventRelationConnectionFilter - sortByCustomField: String - sortByField: SalesforceDeclinedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDeclinedEventRelationsConnection + declinedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDeclinedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Declined Event Relations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDeclinedEventRelationsConnection """ Collection of Salesforce Duplicate Record Items """ - duplicateRecordItems( - filter: SalesforceDuplicateRecordItemConnectionFilter - sortByCustomField: String - sortByField: SalesforceDuplicateRecordItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDuplicateRecordItemsConnection + duplicateRecordItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDuplicateRecordItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Duplicate Record Items to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDuplicateRecordItemsConnection """ Collection of Salesforce Permission Set Assignments """ - permissionSetAssignments( - filter: SalesforcePermissionSetAssignmentConnectionFilter - sortByCustomField: String - sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePermissionSetAssignmentsConnection + permissionSetAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePermissionSetAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Permission Set Assignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePermissionSetAssignmentsConnection """ Collection of Salesforce Campaign Shares """ - campaignShares( - filter: SalesforceCampaignShareConnectionFilter - sortByCustomField: String - sortByField: SalesforceCampaignShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignSharesConnection + campaignShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Campaign Shares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignSharesConnection """ Collection of Salesforce SearchActivities """ - searchActivities( - filter: SalesforceSearchActivityConnectionFilter - sortByCustomField: String - sortByField: SalesforceSearchActivitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSearchActivitysConnection + searchActivities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSearchActivityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSearchActivitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SearchActivities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSearchActivitysConnection """ Collection of Salesforce Apex Jobs """ - asyncApexJobs( - filter: SalesforceAsyncApexJobConnectionFilter - sortByCustomField: String - sortByField: SalesforceAsyncApexJobSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAsyncApexJobsConnection + asyncApexJobs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAsyncApexJobConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAsyncApexJobSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Apex Jobs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAsyncApexJobsConnection """ Collection of Salesforce User List View Criterias """ - userListViewCriterions( - filter: SalesforceUserListViewCriterionConnectionFilter - sortByCustomField: String - sortByField: SalesforceUserListViewCriterionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserListViewCriterionsConnection + userListViewCriterions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserListViewCriterionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserListViewCriterionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of User List View Criterias to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserListViewCriterionsConnection """ Collection of Salesforce Order Products """ - orderItems( - filter: SalesforceOrderItemConnectionFilter - sortByCustomField: String - sortByField: SalesforceOrderItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderItemsConnection + orderItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Order Products to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderItemsConnection """ Collection of Salesforce Email Messages """ - emailMessages( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: String - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emailMessages(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Email Messages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce Group Records """ - collaborationGroupRecords( - filter: SalesforceCollaborationGroupRecordConnectionFilter - sortByCustomField: String - sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupRecordsConnection + collaborationGroupRecords(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Group Records to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce Apex Debug Logs """ - apexLogs( - filter: SalesforceApexLogConnectionFilter - sortByCustomField: String - sortByField: SalesforceApexLogSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexLogsConnection + apexLogs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexLogConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexLogSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Apex Debug Logs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexLogsConnection """ Collection of Salesforce Secure Agent Plug-ins """ - secureAgentPlugins( - filter: SalesforceSecureAgentPluginConnectionFilter - sortByCustomField: String - sortByField: SalesforceSecureAgentPluginSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSecureAgentPluginsConnection + secureAgentPlugins(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSecureAgentPluginConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSecureAgentPluginSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Secure Agent Plug-ins to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSecureAgentPluginsConnection """ Collection of Salesforce Duplicate Rules """ - duplicateRules( - filter: SalesforceDuplicateRuleConnectionFilter - sortByCustomField: String - sortByField: SalesforceDuplicateRuleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDuplicateRulesConnection + duplicateRules(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDuplicateRuleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDuplicateRuleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Duplicate Rules to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDuplicateRulesConnection """ Collection of Salesforce Custom S-Controls """ - scontrols( - filter: SalesforceScontrolConnectionFilter - sortByCustomField: String - sortByField: SalesforceScontrolSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceScontrolsConnection + scontrols(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceScontrolConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceScontrolSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Custom S-Controls to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceScontrolsConnection """ Collection of Salesforce Feed Revisions """ - feedRevisions( - filter: SalesforceFeedRevisionConnectionFilter - sortByCustomField: String - sortByField: SalesforceFeedRevisionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedRevisionsConnection + feedRevisions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedRevisionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedRevisionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Feed Revisions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedRevisionsConnection """ Collection of Salesforce Lead Feeds """ - leadFeeds( - filter: SalesforceLeadFeedConnectionFilter - sortByCustomField: String - sortByField: SalesforceLeadFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadFeedsConnection + leadFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Lead Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadFeedsConnection """ Collection of Salesforce LightningComponentBundles """ - lightningComponentBundles( - filter: SalesforceLightningComponentBundleConnectionFilter - sortByCustomField: String - sortByField: SalesforceLightningComponentBundleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLightningComponentBundlesConnection + lightningComponentBundles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLightningComponentBundleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLightningComponentBundleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LightningComponentBundles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLightningComponentBundlesConnection """ Collection of Salesforce Records """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: String - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Records to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection """ Collection of Salesforce Data Assessment Metrics """ - dataAssessmentMetrics( - filter: SalesforceDataAssessmentMetricConnectionFilter - sortByCustomField: String - sortByField: SalesforceDataAssessmentMetricSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDataAssessmentMetricsConnection + dataAssessmentMetrics(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDataAssessmentMetricConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDataAssessmentMetricSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Data Assessment Metrics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDataAssessmentMetricsConnection """ Collection of Salesforce Apex Test Run Results """ - apexTestRunResults( - filter: SalesforceApexTestRunResultConnectionFilter - sortByCustomField: String - sortByField: SalesforceApexTestRunResultSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestRunResultsConnection + apexTestRunResults(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestRunResultConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestRunResultSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Apex Test Run Results to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestRunResultsConnection """ Collection of Salesforce Lightning Component Bundles """ - auraDefinitionBundles( - filter: SalesforceAuraDefinitionBundleConnectionFilter - sortByCustomField: String - sortByField: SalesforceAuraDefinitionBundleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuraDefinitionBundlesConnection + auraDefinitionBundles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuraDefinitionBundleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: String, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuraDefinitionBundleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Lightning Component Bundles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuraDefinitionBundlesConnection """ Run a SOQL query that fetches any sobject. @@ -55288,11 +57710,17 @@ type NpmOverallDownloadData { """ The download status for all of npm for a specific period """ - period(endDate: String!, startDate: String!): NpmOverallDownloadPeriodData + period(""" + The later date for download stats, e.g. 2018-12-07. Must be after `startDate` + """ endDate: String!, """ + The earlier date for download stats, e.g. 2018-12-06. Must be before `endDate` + """ startDate: String!): NpmOverallDownloadPeriodData """ The download status for all of npm for a specific day """ - day(date: String!): NpmOverallDownloadPeriodData + day(""" + The specific date for download stats, e.g. 2018-12-06 + """ date: String!): NpmOverallDownloadPeriodData } type NpmPackageMetadataDistTagEntry { @@ -55387,11 +57815,17 @@ type NpmPackageDownloadData { """ The download status for this package for a specific period """ - period(endDate: String!, startDate: String!): NpmPackageDownloadPeriodData + period(""" + The later date for download stats, e.g. 2018-12-07. Must be after `startDate` + """ endDate: String!, """ + The earlier date for download stats, e.g. 2018-12-06. Must be before `endDate` + """ startDate: String!): NpmPackageDownloadPeriodData """ The download status for this package for a specific day """ - day(date: String!): NpmPackageDownloadPeriodData + day(""" + The specific date for download stats, e.g. 2018-12-06 + """ date: String!): NpmPackageDownloadPeriodData } """ @@ -55515,7 +57949,9 @@ type NpmPackageVersion { """ [Bundlephobia](https://bundlephobia.com) is a service by [@pastelsky](https://github.com/pastelsky) to find the cost of adding an `npm` package to your bundle. Use this field to get the bundlephobia info, such as size (both minified and gzipped) on this package. """ - bundlephobia(record: Boolean): BundlephobiaDependencyInfo + bundlephobia(""" + Whether to include this query in the Bundlephobia analytics stats and recent searches + """ record: Boolean): BundlephobiaDependencyInfo } """ @@ -55660,7 +58096,9 @@ type NpmPackage { """ [Bundlephobia](https://bundlephobia.com) is a service by [@pastelsky](https://github.com/pastelsky) to find the cost of adding an `npm` package to your bundle. Use this field to get the bundlephobia info, such as size (both minified and gzipped) on this package. """ - bundlephobia(record: Boolean): BundlephobiaDependencyInfo + bundlephobia(""" + Whether to include this query in the Bundlephobia analytics stats and recent searches + """ record: Boolean): BundlephobiaDependencyInfo """ Tags can be used to provide an alias instead of version numbers. For example, a project might choose to have multiple streams of development and use a different tag for each stream, e.g., stable, beta, dev, canary. """ @@ -55674,7 +58112,9 @@ type NpmQuery { """ Find a npm package member by its npm name, e.g. `"fela"` """ - package(name: String!): NpmPackage + package(""" + Find the package by its name + """ name: String!): NpmPackage """ Overall download stats in the npm ecosystem """ @@ -55692,12 +58132,15 @@ type NetlifyPassthroughQuery { """ Make a GET request to the Netlify API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get( - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + get(""" + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } type NetlifyDomainAvailability { @@ -56496,11 +58939,17 @@ type NetlifyQuery { """ Get a Netlify site by its id """ - site(id: String!): NetlifySite + site(""" + The site id + """ id: String!): NetlifySite """ List all Netlify sites for this account """ - sites(filter: String, name: String): [NetlifySite!] + sites(""" + Site name to filter for XXX TODO FIXME + """ filter: String, """ + Site name to filter for + """ name: String): [NetlifySite!] """ List all Netlify accounts for this user """ @@ -56508,7 +58957,11 @@ type NetlifyQuery { """ Check price and availability for a domain. """ - domainAvailability(domain: String!, accountId: String!): NetlifyDomainAvailability! + domainAvailability(""" + Domain to search for (e.g. example.com) + """ domain: String!, """ + Netlify account id + """ accountId: String!): NetlifyDomainAvailability! """ Make a REST API call to the Netlify API. @@ -56530,12 +58983,15 @@ type MixpanelPassthroughQuery { """ Make a GET request to the Mixpanel API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get( - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + get(""" + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } """ @@ -56563,12 +59019,15 @@ type MeetupPassthroughQuery { """ Make a GET request to the Meetup API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get( - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + get(""" + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } """ @@ -56596,12 +59055,15 @@ type MailchimpPassthroughQuery { """ Make a GET request to the Mailchimp API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get( - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + get(""" + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } """ @@ -56731,18 +59193,27 @@ type LogdnaQuery { """ Returns a list of log lines """ - export( - emailSubject: String - email: String - prefer: LogdnaExportPreferEnumArg - query: String - levels: [String!] - apps: [String!] - hosts: [String!] - first: Int - to: Float! - from: Float! - ): LogdnaLogLinesConnection! + export(""" + Allows user to set the subject of the email + """ emailSubject: String, """ + Specifies an email that the results will be sent to, by default results are streamed back. + """ 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, """ + Search query. Same format as LogDNA's log viewer. See [https://docs.logdna.com/docs/search](https://docs.logdna.com/docs/search) + """ query: String, """ + List of levels to filter by. + """ levels: [String!], """ + List of apps to filter by. + """ apps: [String!], """ + List of hosts to filter by. + """ hosts: [String!], """ + Number of results to return. Depends on your plan, but generally the max is 10,000. Defaults to 100 + """ first: Int, """ + End time for logs to export, in Unix timestamp in seconds or milliseconds. + """ to: Float!, """ + Start time for logs to export, in Unix timestamp in seconds or milliseconds. + """ from: Float!): LogdnaLogLinesConnection! } """ @@ -56794,62 +59265,97 @@ type IntercomQuery { """ The Users resource is the primary way of interacting with Intercom. """ - user(email: String, userId: String, intercomId: String): IntercomUser + user(""" + The email you have defined for the user. + """ email: String, """ + The user id you have defined for the user. + """ userId: String, """ + The canonical user id from Intercom. + """ intercomId: String): IntercomUser """ Companies allow you to represent commercial organizations using your product. """ - company(name: String, companyId: String, intercomId: String): IntercomCompany + company(""" + The name you have defined for the user. + """ name: String, """ + The company_id you have defined for the user. + """ companyId: String, """ + The canonical company id from Intercom. + """ intercomId: String): IntercomCompany """ Conversation are how you can communicate with users in Intercom. """ - conversation(displayAsPlaintext: Boolean, id: String!): IntercomConversation + conversation(""" + If true, retrieves conversation messages in plain text + """ displayAsPlaintext: Boolean, """ + id of the conversation + """ id: String!): IntercomConversation """ Conversation are how you can communicate with users in Intercom. """ - conversations( - displayAsPlaintext: Boolean - before: Int - sortByField: IntercomConversationSortByField - orderBy: IntercomSortOrderBy - ): IntercomConversationsConnection + conversations(""" + When true, retrieves conversation messages in plain text. Defaults to false. + """ displayAsPlaintext: Boolean, """ + Return the conversations before a timestamp + """ before: Int, """ + What field to sort the results by. Defaults to UPDATED_AT. + """ sortByField: IntercomConversationSortByField, """ + Return the conversations in ascending or descending order. Defaults to DESC. + """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection """ Gets conversations by an admin. If no adminId is provided, gets all unassigned conversations. Conversation are how you can communicate with users in Intercom. """ - conversationsByAdmins( - displayAsPlaintext: Boolean - open: Boolean - adminId: String - sortByField: IntercomConversationSortByField - orderBy: IntercomSortOrderBy - ): IntercomConversationsConnection + conversationsByAdmins(""" + When true, retrieves conversation messages in plain text. Defaults to false. + """ displayAsPlaintext: Boolean, """ + Defaults to true. When true, fetches just open conversations. When false, fetches just closed conversations. + """ open: Boolean, """ + The id of the admin. If not provided, defaults to unassigned. + """ adminId: String, """ + What field to sort the results by. Defaults to UPDATED_AT. + """ sortByField: IntercomConversationSortByField, """ + Return the conversations in ascending or descending order. Defaults to DESC. + """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection """ Gets conversations by a user. Conversation are how you can communicate with users in Intercom. """ - conversationsByUsers( - displayAsPlaintext: Boolean - unread: Boolean - intercomUserId: String - email: String - userId: String - sortByField: IntercomConversationSortByField - orderBy: IntercomSortOrderBy - ): IntercomConversationsConnection + conversationsByUsers(""" + When true, retrieves conversation messages in plain text. Defaults to false. + """ displayAsPlaintext: Boolean, """ + Defaults to false. When true, fetches just unread conversations. + """ unread: Boolean, """ + The id of the user. Provide only one of userId, email, or intercomUserId. + """ intercomUserId: String, """ + Your email for the user. Provide only one of userId, email, or intercomUserId. + """ email: String, """ + Your user_id for the user. Provide only one of userId, email, or intercomUserId. + """ userId: String, """ + What field to sort the results by. Defaults to UPDATED_AT. + """ sortByField: IntercomConversationSortByField, """ + Return the conversations in ascending or descending order. Defaults to DESC. + """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection """ All of your users on Intercom """ - users( - segmentId: String - tagId: String - createdDaysAgo: Int - sortByField: IntercomUsersSortByField - orderBy: IntercomSortOrderBy - after: String - first: Int - ): IntercomUsersConnection + users(""" + Filter by segment, only provide one of tagId or segmentId + """ segmentId: String, """ + Filter by tag, only provide one of tagId or segmentId + """ tagId: String, """ + Limit results to users that were created in that last number of days + """ createdDaysAgo: Int, """ + What field to sort the results by. Defaults to CREATED_AT. + """ sortByField: IntercomUsersSortByField, """ + Return the users in ascending or descending order. Defaults to DESC. + """ orderBy: IntercomSortOrderBy, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Number of user to fetch, maximum is 60 + """ first: Int): IntercomUsersConnection """ A tag allows you to label your users and companies and list them using that tag. """ @@ -56857,21 +59363,35 @@ type IntercomQuery { """ List of events on Intercom for a user. Provide one of userId, email, or intercomUserId. """ - events( - after: String - intercomUserId: String - email: String - userId: String - first: Int - ): IntercomEventssConnection + events(""" + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Get events by the Intercom-defiend user id. + """ intercomUserId: String, """ + Get events by the email you have defined for the user. + """ email: String, """ + Get events by the user id you have defined for the user. + """ userId: String, """ + Number of events to fetch, defaults to 50 + """ first: Int): IntercomEventssConnection """ List of event summaries for a user. Provide one of userId, email, or intercomUserId. """ - eventsSummary(intercomUserId: String, email: String, userId: String): [IntercomEventSummary!] + eventsSummary(""" + Get events by the Intercom-defiend user id. + """ intercomUserId: String, """ + Get events by the email you have defined for the user. + """ email: String, """ + Get events by the user id you have defined for the user. + """ userId: String): [IntercomEventSummary!] """ A tag allows you to label your users and companies and list them using that tag. """ - tag(id: String, name: String): IntercomTag + tag(""" + The id of the tag. Only provide one of name or id. + """ id: String, """ + The name of the tag. Only provide one of name or id. + """ name: String): IntercomTag """ Webhooks for new events in Intercom: [https://www.intercom.com/help/apps-in-intercom/apps/webhooks](https://www.intercom.com/help/apps-in-intercom/apps/webhooks) """ @@ -56889,12 +59409,15 @@ type HubspotPassthroughQuery { """ Make a GET request to the Hubspot API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get( - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + get(""" + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } """ @@ -58551,7 +61074,11 @@ type HubspotContact { """ """ - engagements(after: String, first: Int): HubspotEngagementsConnection! + engagements(""" + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Number of engagments to fetch. Defaults to 10. Maximum is 100. + """ first: Int): HubspotEngagementsConnection! } """ @@ -59050,7 +61577,11 @@ type HubspotCompany { """ All contacts associated with this company. """ - contacts(after: String, first: Int): HubspotContactsConnection + contacts(""" + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Number of contacts to fetch, maximum is 100. Defaults to 20. + """ first: Int): HubspotContactsConnection } """ @@ -59064,15 +61595,27 @@ type HubspotQuery { """ List companies """ - companies(after: String, first: Int): HubspotCompaniesConnection + companies(""" + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Number of companies to fetch, maximum is 250. Defaults to 20. + """ first: Int): HubspotCompaniesConnection """ Contact """ - contact(email: String, id: Int): HubspotContact! + contact(""" + Contact email. Must provide exactly one of id or email. + """ email: String, """ + Contact id. Must provide exactly one of id or email. + """ id: Int): HubspotContact! """ Contacts """ - contacts(after: String, first: Int): HubspotContactsConnection + contacts(""" + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Number of contacts to fetch, maximum is 100. Defaults to 20. + """ first: Int): HubspotContactsConnection """ Get a deal by its id. """ @@ -59080,15 +61623,25 @@ type HubspotQuery { """ List deals """ - deals(after: String, first: Int): HubspotDealsConnection + deals(""" + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Number of deals to fetch, maximum is 250. Defaults to 100. + """ first: Int): HubspotDealsConnection """ Get a list of all engagement for a portal, with pagination. Engagements are used to store data from CRM actions, including notes, tasks, meetings, and calls. Engagements should be associated with at least one contact record, and optionally other contacts, deals, and a company record. """ - engagements(after: String, first: Int): HubspotEngagementsConnection! + engagements(""" + Fetch results after the specified cursor. + """ after: String, """ + Number of results to fetch. Defaults to 10, max is 100. + """ first: Int): HubspotEngagementsConnection! """ Get an owner by id. """ - owner(id: Int!): HubspotOwner! + owner(""" + Id of the owner. + """ id: Int!): HubspotOwner! """ Make a REST API call to the Hubspot API. @@ -60837,23 +63390,204 @@ type GoogleDriveFile { """ Self-contained URL to download the file. Keep the url secure, as anyone with the URL will be able to download the file. Expires in 24 hours. """ - fileDownload(mimeType: String): GoogleDriveOneGraphFileDownload + fileDownload(""" + You must provide a mimeType if you are downloading a Google Docs file (e.g. a spreadsheet created with Google Docs). + + mimeType will be ignored for downloading regualar files. + + The following mimeTypes are supported: + + + | Google Doc Format | Conversion Format | Corresponding MIME type | + | ----------------- | ------------------------ | ------------------------------------------------------------------------- | + | Documents | HTML | text/html | + | | HTML (zipped) | application/zip | + | | Plain text | text/plain | + | | Rich text | application/rtf | + | | Open Office doc | application/vnd.oasis.opendocument.text | + | | PDF | application/pdf | + | | MS Word document | application/vnd.openxmlformats-officedocument.wordprocessingml.document | + | | EPUB | application/epub+zip | + | Spreadsheets | MS Excel | application/vnd.openxmlformats-officedocument.spreadsheetml.sheet | + | | Open Office sheet | application/x-vnd.oasis.opendocument.spreadsheet | + | | PDF | application/pdf | + | | CSV (first sheet only) | text/csv | + | | TSV (first sheet only) | text/tab-separated-values | + | | HTML (zipped) | application/zip | + | Drawings | JPEG | image/jpeg | + | | PNG | image/png | + | | SVG | image/svg+xml | + | | PDF | application/pdf | + | Presentations | MS PowerPoint | application/vnd.openxmlformats-officedocument.presentationml.presentation | + | | Open Office presentation | application/vnd.oasis.opendocument.presentation | + | | PDF | application/pdf | + | | Plain text | text/plain | + | Apps Scripts | JSON | application/vnd.google-apps.script+json | + + Reference: [https://developers.google.com/drive/api/v3/manage-downloads](https://developers.google.com/drive/api/v3/manage-downloads) + """ mimeType: String): GoogleDriveOneGraphFileDownload } """ Google Drive """ type GoogleDrive { - file(id: String!): GoogleDriveFile! - files( - q: String - corpora: GoogleDriveFilesCorporaEnum - orderBy: [GoogleDriveFilesOrderByEnum!] - first: Int - after: String - spaces: [GoogleDriveFilesSpacesEnum!] - teamDriveId: String - ): GoogleDriveFilesConnection! + file(""" + Id of the file + """ id: String!): GoogleDriveFile! + files(""" + Optional query param to search for specific files. + + **Examples** + + Search for files with the name "hello" + + ``` + name = 'hello' + ``` + + Search for folders using the folder-specific MIME type + + ``` + mimeType = 'application/vnd.google-apps.folder' + ``` + + Search for files that are not folders + + ``` + mimeType != 'application/vnd.google-apps.folder' + ``` + + Search for files with a name containing the words "hello" and "goodbye" + + ``` + name contains 'hello' and name contains 'goodbye' + ``` + + Search for files with a name that does not contain the word "hello" + + ``` + not name contains 'hello' + ``` + + Search for files containing the word "hello" in the content + + ``` + fullText contains 'hello' + ``` + + Search for files not containing the word "hello" in the content + + ``` + not fullText contains 'hello' + ``` + + Search for files containing the exact phrase "hello world" in the content + + ``` + fullText contains '"hello world"' + fullText contains '"hello_world"' + ``` + + Search for files with a query containing the "" character (e.g., "\authors") + + ``` + fullText contains '\authors' + ``` + + Search for files writeable by the user "test@example.org" + + ``` + 'test@example.org' in writers + ``` + + Search for files writeable by the members of the group "group@example.org" + + ``` + 'group@example.org' in writers + ``` + + Search for the ID 1234567 in the parents collection. This finds all files and folders located directly in the folder whose ID is 1234567. + + ``` + '1234567' in parents + ``` + + Search for the alias ID appDataFolder in the parents collection. This finds all files and folders located directly under the Application Data folder. + + ``` + 'appDataFolder' in parents + ``` + + Search for files writeable by the users "test@example.org" and "test2@example.org" + + ``` + 'test@example.org' in writers and 'test2@example.org' in writers + ``` + + Search for files containing the text "important" which are in the trash + + ``` + fullText contains 'important' and trashed = true + ``` + + Search for files modified after June 4th 2012 + + ``` + modifiedTime > '2012-06-04T12:00:00' // default time zone is UTC + modifiedTime > '2012-06-04T12:00:00-08:00' + ``` + + Search for files shared with the authorized user with "hello" in the name + + ``` + sharedWithMe and name contains 'hello' + ``` + + Search for files with a custom file property named additionalID with the value 8e8aceg2af2ge72e78. + + ``` + appProperties has { key='additionalID' and value='8e8aceg2af2ge72e78' } + ``` + + Search for files that have not been shared with anyone or domains (only private, or shared with specific users or groups) + + ``` + visibility = 'limited' + ``` + + **Fields** + + | Field | Value Type | Operators | Description | + | -------------- | ---------- | ------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | + | name | string | contains, =, != | Name of the file. `contains` only matches from the start of the string (e.g. 'hello' will find 'hello world', but not 'world hello' | + | fullText | string | contains | Full text of the file including name, description, content, and indexable text. `contains` only matches whole words | + | mimeType | string | contains, =, != | MIME type of the file. | + | modifiedTime | date3 | <=, <, =, !=, >, >= | Date of the last modification of the file. | + | viewedByMeTime | date3 | <=, <, =, !=, >, >= | Date that the user last viewed a file. | + | trashed | boolean | =, != | Whether the file is in the trash or not. | + | starred | boolean | =, != | Whether the file is starred or not. | + | parents | collection | in | Whether the parents collection contains the specified ID. | + | owners | collection | in | Users who own the file. | + | writers | collection | in | Users or groups who have permission to modify the file. | + | readers | collection | in | Users or groups who have permission to read the file. | + | sharedWithMe | boolean | =, != | Files that are in the user's "Shared with me" collection. | + | 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, """ + 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, """ + 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!], """ + 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, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Spaces to query within the corpus. + """ spaces: [GoogleDriveFilesSpacesEnum!], """ + ID of Team Drive to search + """ teamDriveId: String): GoogleDriveFilesConnection! } """ @@ -61429,17 +64163,31 @@ type GoogleCalendarCalendar { """ Events for the calendar """ - events( - timeZone: String - timeMax: String - timeMin: String - showDeleted: Boolean - q: String - singleEvents: Boolean - orderBy: String - after: String - first: Int - ): GoogleCalendarEventsConnection + events(""" + Time zone used in the response. The default is the time zone of the calendar. + """ 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, """ + 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, """ + 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, """ + Free text search terms to find events that match these terms in any field, except for extended properties. + """ 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, """ + The order of the events returned in the result. The default is an unspecified, stable order. + + Acceptable values are: + + "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, """ + Cursor for use in pagination. Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Number of events to return. + """ first: Int): GoogleCalendarEventsConnection } """ @@ -62119,18 +64867,33 @@ type GoogleCalendarQuery { An event on a calendar containing information such as the title, start and end times, and attendees. Events can be either single events or recurring events. """ - events( - timeZone: String - timeMax: String - timeMin: String - showDeleted: Boolean - q: String - singleEvents: Boolean - orderBy: String - after: String - first: Int - calendarId: String! - ): GoogleCalendarEventsConnection + events(""" + Time zone used in the response. The default is the time zone of the calendar. + """ 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, """ + 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, """ + 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, """ + Free text search terms to find events that match these terms in any field, except for extended properties. + """ 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, """ + The order of the events returned in the result. The default is an unspecified, stable order. + + Acceptable values are: + + "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, """ + Cursor for use in pagination. Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Number of events to return. + """ first: Int, """ + Id of the calendar. Use "primary" to get the logged in user's primary calendar. + """ calendarId: String!): GoogleCalendarEventsConnection """ Calendar events. @@ -62138,7 +64901,11 @@ type GoogleCalendarQuery { An event on a calendar containing information such as the title, start and end times, and attendees. Events can be either single events or recurring events. """ - calendars(after: String, first: Int): GoogleCalendarCalendarsConnection + calendars(""" + Cursor for use in pagination. Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Number of events to return. + """ first: Int): GoogleCalendarCalendarsConnection } """ @@ -64865,7 +67632,12 @@ type GmailThreadDeprecated { A short part of the message text. """ snippet: String - expanded(format: String): GmailThread! + expanded(""" + 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): GmailThread! } type GmailListThreadsResponseDeprecated { @@ -65221,25 +67993,48 @@ type GmailDraftsConnection { Google Gmail """ type Gmail { - drafts(format: String, q: String, after: String, first: Int): GmailDraftsConnection! - messages( - format: String - q: String - after: String - first: Int - labelIds: String - ): GmailMessagesConnection! - messageThreads( - format: String - after: String - q: String - first: Int - labelIds: String - ): GmailThreadsConnection! + drafts(""" + 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, """ + 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, """ + Returns the drafts in the list that come after the specified cursor. + """ after: String, """ + The maximum number of drafts to return. Defaults to 10. + """ first: Int): GmailDraftsConnection! + messages(""" + 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, """ + 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, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + The maximum number of messages to return. Defaults to 10. + """ 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, """ + Returns the elements in the list that come after the specified cursor. + """ 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, """ + The maximum number of messages to return. Defaults to 10. + """ first: Int, labelIds: String): GmailThreadsConnection! """ Return a draft by its id """ - draft(id: String!): GmailDraft! + draft(""" + Draft id + """ id: String!): GmailDraft! """ Return a message by its id """ @@ -65248,9 +68043,13 @@ type Gmail { Return a thread by its id """ thread(id: String!): GmailThread! - threads(pageToken: String, q: String, maxResults: Int, labelIds: String): GmailListThreadsResponseDeprecated! + 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! + 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") labels: GmailListLabelsResponse! } @@ -65518,12 +68317,15 @@ type GoogleAnalyticsRealtimePassthroughQuery { """ Make a GET request to the Google Analytics API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get( - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + get(""" + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } type GoogleAnalyticsRealtimePassthroughApi { @@ -65548,12 +68350,15 @@ type GoogleAnalyticsReportingPassthroughQuery { """ Make a GET request to the Google Analytics API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get( - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + get(""" + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } type GoogleAnalyticsReportingPassthroughApi { @@ -65582,11 +68387,15 @@ type GoogleAnalytics { """ A Google analytics account. """ - account(id: String!): GoogleAnalyticsAccont! + account(""" + The account id for the account to fetch. + """ id: String!): GoogleAnalyticsAccont! """ Google analytics accounts, with pagination information. """ - accounts(first: Int): GoogleAnalyticsAccountsConnection! + accounts(""" + Number of accounts to fetch + """ first: Int): GoogleAnalyticsAccountsConnection! } """ @@ -67421,11 +70230,15 @@ type FedexQuery { """ Track a Fedex package """ - track(trackingNumber: String!): FedexTrackReply! + track(""" + Tracking number for the package + """ trackingNumber: String!): FedexTrackReply! """ Track multiple Fedex packages """ - trackMultiple(trackingNumbers: [String!]!): [FedexTrackReply]! + trackMultiple(""" + Tracking numbers for packages + """ trackingNumbers: [String!]!): [FedexTrackReply]! } """ @@ -78120,12 +80933,15 @@ type EggheadioPassthroughQuery { """ Make a GET request to the Egghead.io API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get( - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + get(""" + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } """ @@ -78462,13 +81278,18 @@ type DropboxFileSearchResultsConnection { The root for dropbx. """ type DropboxQuery { - account(accountId: String!): DropboxAccount - searchFiles( - mode: DropboxFileSearchMode - filePath: String - first: Int - query: String! - ): DropboxFileSearchResultsConnection + account(""" + A user's account information + """ 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, """ + The path in the user's Dropbox to search. Should probably be a folder. Defaults to the root folder. + """ filePath: String, """ + Number of results to fetch + """ first: Int, """ + + """ query: String!): DropboxFileSearchResultsConnection } """ @@ -78946,12 +81767,15 @@ type DevToPassthroughQuery { """ Make a GET request to the Dev.to API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get( - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + get(""" + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } """ @@ -78979,7 +81803,34 @@ type DevToQuery { Responses, according to the combination of params, are cached for 24 hours. """ - articles(top: Int, state: String, username: String, tag: String): DevToArticlessConnection + articles(""" + Adding this will allow the client to return the most popular articles + in the last `N` days. + + `top` indicates the number of days since publication of the articles + returned. + + This param can only be used by itself or with `tag`. + """ 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, """ + 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, """ + Adding this parameter will return articles that contain the + requested tag. + + This param can be used by itself, with `page` or with `top`. + """ tag: String): DevToArticlessConnection """ Retrieve a list of webhooks they have previously registered. @@ -79037,12 +81888,15 @@ type ContentfulPassthroughQuery { """ Make a GET request to the Contentful API. Use this as an escape hatch if OneGraph does not yet support functionality of the underlying API. """ - get( - allowUnauthenticated: Boolean - queryString: String - query: [[String!]!] - path: String! - ): PassthroughResult! + get(""" + Whether to send an unauthenticated request to the API. Defaults to false. + """ allowUnauthenticated: Boolean, """ + The query for the URL as a percent-encoded string, e.g. `first=10&sort=popular` + """ queryString: String, """ + The query for the URL, as a list of key-value pairs, e.g. `[["first", "10"], ["sort", "popular"]]` + """ query: [[String!]!], """ + The path of the URL, e.g. `/posts`. + """ path: String!): PassthroughResult! } """ @@ -79362,7 +82216,13 @@ type CloudflareAccount { """ All memberships of an account """ - memberships(after: String, direction: CloudflareDirectionArg, first: Int): CloudflareAccountMembershipsConnection + memberships(""" + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Direction to order results by, defaults to descending + """ direction: CloudflareDirectionArg, """ + Number of results to return, minimum is 5, maximum is 50. Defaults to 20. + """ first: Int): CloudflareAccountMembershipsConnection """ All roles of an account """ @@ -79394,11 +82254,19 @@ type CloudflareQuery { """ Accounts that the current authentication owns or has access to """ - accounts(after: String, direction: CloudflareDirectionArg, first: Int): CloudflareAccountsConnection + accounts(""" + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Direction to order results by, defaults to descending + """ direction: CloudflareDirectionArg, """ + Number of results to return, minimum is 5, maximum is 50. Defaults to 20. + """ first: Int): CloudflareAccountsConnection """ Get information about a specific account """ - account(id: String!): CloudflareAccount + account(""" + Account Id + """ id: String!): CloudflareAccount """ currently logged in user """ @@ -79628,7 +82496,9 @@ type Clearbit { """ Clearbit company autocomplete """ - autocomplete(name: String!): [ClearbitAutocomplete!] + autocomplete(""" + The partial name of the company + """ name: String!): [ClearbitAutocomplete!] """ Clearbit contact enrichment """ @@ -79666,7 +82536,9 @@ type BundlephobiaRecentSearch { """ Info on a recently searched package from Bundlephobia at the searched for version. """ - package(record: Boolean): BundlephobiaDependencyInfo + package(""" + Whether to include this query in the Bundlephobia analytics stats and recent searches + """ record: Boolean): BundlephobiaDependencyInfo } type BundlephobiaDependencySize { @@ -79742,11 +82614,19 @@ type BundlephobiaQuery { """ Info on a package from Bundlephobia. """ - packageInfo(record: Boolean, version: String, package: String!): BundlephobiaDependencyInfo + packageInfo(""" + Whether to include this query in the Bundlephobia analytics stats and recent searches + """ record: Boolean, """ + The npm package version, e.g. `10.0.1` + """ version: String, """ + The npm package name. + """ package: String!): BundlephobiaDependencyInfo """ Historical info on a package from Bundlephobia. """ - packageHistory(package: String!): [BundlephobiaDependencyInfo] + packageHistory(""" + The npm package name. + """ package: String!): [BundlephobiaDependencyInfo] """ Get recent searches on Bundlephobia. """ @@ -80167,36 +83047,57 @@ The root for Box. """ type BoxQuery { user(userId: String!): BoxUser - searchFiles( - searchTrash: Boolean - contentTypes: [BoxFileSearchContentType!] - ancestorFolderIds: [String!] - ownerUserIds: [String!] - size: BoxRangeArg - updatedAt: BoxRangeArg - createdAt: BoxRangeArg - fileExtensions: [String!] - first: Int - query: String! - ): BoxFilesConnection + searchFiles(""" + Whether to search for trash. If true, only returns items from the trash + """ searchTrash: Boolean, """ + Search for objects of specified content types. + """ contentTypes: [BoxFileSearchContentType!], """ + Search for the contents of specific folders (and folders within them). + """ ancestorFolderIds: [String!], """ + Search for objects by owner. + """ ownerUserIds: [String!], """ + Return only files within a stated size range. Specify the range in bytes + """ 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, """ + 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, """ + Limit searches to specific file extensions like pdf,png, or doc. + """ fileExtensions: [String!], """ + Number of results to fetch + """ 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 } type AirtableTable { - records( - filterByFormula: String - sort: [AirtableRecordsSortArg!] - view: String - after: String - first: Int - ): AirtableRecordsConnection! - record(recordId: String!): AirtableRecord! + records(""" + A [formula](https://support.airtable.com/hc/en-us/articles/203255215-Formula-Field-Reference) used to filter records. The formula will be evaluated for each record, and if the result is not `0`, `false`, `""`, `NaN`, `[]`, or `#Error!` the record will be included in the response. + + 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, """ + 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!], """ + 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, """ + Returns the elements that come after the specified cursor. + """ after: String, """ + How many records to fetch. Defaults to 10, max is 100. + """ first: Int): AirtableRecordsConnection! + record(""" + Id of the record to fetch. + """ recordId: String!): AirtableRecord! } """ An Airtable base contains all of the information you need for a particular project or collection. Each of the square icons on your homepage is a different base. It's kind of like a workbook in a traditional spreadsheet, and can contain multiple tables of content. """ type AirtableBase { - table(tableName: String!): AirtableTable! + table(""" + Case-insensitive name for the table + """ tableName: String!): AirtableTable! } enum AirtableRecordsSortDirection { @@ -80263,20 +83164,38 @@ type AirtableRecordsConnection { The root for Airtable. """ type AirtableQuery { - records( - filterByFormula: String - sort: [AirtableRecordsSortArg!] - view: String - after: String - first: Int - tableName: String! - baseId: String! - ): AirtableRecordsConnection! - record(recordId: String!, tableName: String!, baseId: String!): AirtableRecord! + records(""" + A [formula](https://support.airtable.com/hc/en-us/articles/203255215-Formula-Field-Reference) used to filter records. The formula will be evaluated for each record, and if the result is not `0`, `false`, `""`, `NaN`, `[]`, or `#Error!` the record will be included in the response. + + 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, """ + 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!], """ + 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, """ + Returns the elements that come after the specified cursor. + """ after: String, """ + How many records to fetch. Defaults to 10, max is 100. + """ first: Int, """ + The table name that contains the records. + """ 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!, """ + The table name that contains the record. + """ 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! """ An Airtable base contains all of the information you need for a particular project or collection. Each of the square icons on your homepage is a different base. It's kind of like a workbook in a traditional spreadsheet, and can contain multiple tables of content. """ - base(baseId: String!): AirtableBase! + base(""" + 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!): AirtableBase! } input OneGraphServiceUserIds { @@ -82682,13 +85601,17 @@ type GitHubPullRequestReviewContributionsByRepository { """ The pull request review contributions. """ - contributions( - orderBy: GitHubContributionOrder - last: Int - first: Int - before: String - after: String - ): GitHubCreatedPullRequestReviewContributionConnection! + contributions(""" + Ordering options for contributions returned from the connection. + """ orderBy: GitHubContributionOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCreatedPullRequestReviewContributionConnection! """ The repository in which the pull request reviews were made. """ @@ -82738,13 +85661,17 @@ type GitHubPullRequestContributionsByRepository { """ The pull request contributions. """ - contributions( - orderBy: GitHubContributionOrder - last: Int - first: Int - before: String - after: String - ): GitHubCreatedPullRequestContributionConnection! + contributions(""" + Ordering options for contributions returned from the connection. + """ orderBy: GitHubContributionOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCreatedPullRequestContributionConnection! """ The repository in which the pull requests were opened. """ @@ -82794,13 +85721,17 @@ type GitHubIssueContributionsByRepository { """ The issue contributions. """ - contributions( - orderBy: GitHubContributionOrder - last: Int - first: Int - before: String - after: String - ): GitHubCreatedIssueContributionConnection! + contributions(""" + Ordering options for contributions returned from the connection. + """ orderBy: GitHubContributionOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCreatedIssueContributionConnection! """ The repository in which the issues were opened. """ @@ -83291,13 +86222,17 @@ type GitHubCommitContributionsByRepository { """ The commit contributions, each representing a day. """ - contributions( - orderBy: GitHubCommitContributionOrder - last: Int - first: Int - before: String - after: String - ): GitHubCreatedCommitContributionConnection! + contributions(""" + Ordering options for commit contributions returned from the connection. + """ orderBy: GitHubCommitContributionOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCreatedCommitContributionConnection! """ The repository in which the commits were made. """ @@ -83319,7 +86254,9 @@ type GitHubContributionsCollection { """ Commit contributions made by the user, grouped by repository. """ - commitContributionsByRepository(maxRepositories: Int): [GitHubCommitContributionsByRepository!]! + commitContributionsByRepository(""" + How many repositories should be included. + """ maxRepositories: Int): [GitHubCommitContributionsByRepository!]! """ A calendar of this user's contributions on GitHub. """ @@ -83371,23 +86308,31 @@ type GitHubContributionsCollection { """ A list of issues the user opened. """ - issueContributions( - orderBy: GitHubContributionOrder - excludePopular: Boolean - excludeFirst: Boolean - last: Int - first: Int - before: String - after: String - ): GitHubCreatedIssueContributionConnection! + issueContributions(""" + Ordering options for contributions returned from the connection. + """ orderBy: GitHubContributionOrder, """ + Should the user's most commented issue be excluded from the result. + """ excludePopular: Boolean, """ + Should the user's first issue ever be excluded from the result. + """ excludeFirst: Boolean, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCreatedIssueContributionConnection! """ Issue contributions made by the user, grouped by repository. """ - issueContributionsByRepository( - excludePopular: Boolean - excludeFirst: Boolean - maxRepositories: Int - ): [GitHubIssueContributionsByRepository!]! + issueContributionsByRepository(""" + Should the user's most commented issue be excluded from the result. + """ excludePopular: Boolean, """ + Should the user's first issue ever be excluded from the result. + """ excludeFirst: Boolean, """ + How many repositories should be included. + """ maxRepositories: Int): [GitHubIssueContributionsByRepository!]! """ When the user signed up for GitHub. This will be null if that sign up date falls outside the collection's time range and ignoreTimeRange is false. """ @@ -83419,48 +86364,67 @@ type GitHubContributionsCollection { """ Pull request contributions made by the user. """ - pullRequestContributions( - orderBy: GitHubContributionOrder - excludePopular: Boolean - excludeFirst: Boolean - last: Int - first: Int - before: String - after: String - ): GitHubCreatedPullRequestContributionConnection! + pullRequestContributions(""" + Ordering options for contributions returned from the connection. + """ orderBy: GitHubContributionOrder, """ + Should the user's most commented pull request be excluded from the result. + """ excludePopular: Boolean, """ + Should the user's first pull request ever be excluded from the result. + """ excludeFirst: Boolean, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCreatedPullRequestContributionConnection! """ Pull request contributions made by the user, grouped by repository. """ - pullRequestContributionsByRepository( - excludePopular: Boolean - excludeFirst: Boolean - maxRepositories: Int - ): [GitHubPullRequestContributionsByRepository!]! + pullRequestContributionsByRepository(""" + Should the user's most commented pull request be excluded from the result. + """ excludePopular: Boolean, """ + Should the user's first pull request ever be excluded from the result. + """ excludeFirst: Boolean, """ + How many repositories should be included. + """ maxRepositories: Int): [GitHubPullRequestContributionsByRepository!]! """ Pull request review contributions made by the user. """ - pullRequestReviewContributions( - orderBy: GitHubContributionOrder - last: Int - first: Int - before: String - after: String - ): GitHubCreatedPullRequestReviewContributionConnection! + pullRequestReviewContributions(""" + Ordering options for contributions returned from the connection. + """ orderBy: GitHubContributionOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCreatedPullRequestReviewContributionConnection! """ Pull request review contributions made by the user, grouped by repository. """ - pullRequestReviewContributionsByRepository(maxRepositories: Int): [GitHubPullRequestReviewContributionsByRepository!]! + pullRequestReviewContributionsByRepository(""" + How many repositories should be included. + """ maxRepositories: Int): [GitHubPullRequestReviewContributionsByRepository!]! """ A list of repositories owned by the user that the user created in this time range. """ - repositoryContributions( - orderBy: GitHubContributionOrder - excludeFirst: Boolean - last: Int - first: Int - before: String - after: String - ): GitHubCreatedRepositoryContributionConnection! + repositoryContributions(""" + Ordering options for contributions returned from the connection. + """ orderBy: GitHubContributionOrder, """ + Should the user's first repository ever be excluded from the result. + """ excludeFirst: Boolean, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCreatedRepositoryContributionConnection! """ A count of contributions made by the user that the viewer cannot access. Only non-zero when the user has chosen to share their private contribution counts. """ @@ -83476,11 +86440,19 @@ type GitHubContributionsCollection { """ How many issues the user opened. """ - totalIssueContributions(excludePopular: Boolean, excludeFirst: Boolean): Int! + totalIssueContributions(""" + Should the user's most commented issue be excluded from this count. + """ excludePopular: Boolean, """ + Should the user's first issue ever be excluded from this count. + """ excludeFirst: Boolean): Int! """ How many pull requests the user opened. """ - totalPullRequestContributions(excludePopular: Boolean, excludeFirst: Boolean): Int! + totalPullRequestContributions(""" + Should the user's most commented pull request be excluded from this count. + """ excludePopular: Boolean, """ + Should the user's first pull request ever be excluded from this count. + """ excludeFirst: Boolean): Int! """ How many pull request reviews the user left. """ @@ -83492,10 +86464,11 @@ type GitHubContributionsCollection { """ How many different repositories the user opened issues in. """ - totalRepositoriesWithContributedIssues( - excludePopular: Boolean - excludeFirst: Boolean - ): Int! + totalRepositoriesWithContributedIssues(""" + Should the user's most commented issue be excluded from this count. + """ excludePopular: Boolean, """ + Should the user's first issue ever be excluded from this count. + """ excludeFirst: Boolean): Int! """ How many different repositories the user left pull request reviews in. """ @@ -83503,14 +86476,17 @@ type GitHubContributionsCollection { """ How many different repositories the user opened pull requests in. """ - totalRepositoriesWithContributedPullRequests( - excludePopular: Boolean - excludeFirst: Boolean - ): Int! + totalRepositoriesWithContributedPullRequests(""" + Should the user's most commented pull request be excluded from this count. + """ excludePopular: Boolean, """ + Should the user's first pull request ever be excluded from this count. + """ excludeFirst: Boolean): Int! """ How many repositories the user created. """ - totalRepositoryContributions(excludeFirst: Boolean): Int! + totalRepositoryContributions(""" + Should the user's first repository ever be excluded from this count. + """ excludeFirst: Boolean): Int! """ The user who made the contributions in this collection. """ @@ -83524,7 +86500,9 @@ interface GitHubProfileOwner { """ Determine if this repository owner has any items that can be pinned to their profile. """ - anyPinnableItems(type: GitHubPinnableItemType): Boolean! + anyPinnableItems(""" + Filter to only a particular kind of pinnable item. + """ type: GitHubPinnableItemType): Boolean! """ The public profile email. """ @@ -83552,23 +86530,31 @@ interface GitHubProfileOwner { """ A list of repositories and gists this profile owner can pin to their profile. """ - pinnableItems( - last: Int - first: Int - before: String - after: String - types: [GitHubPinnableItemType!] - ): GitHubPinnableItemConnection! + pinnableItems(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filter the types of pinnable items that are returned. + """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! """ A list of repositories and gists this profile owner has pinned to their profile """ - pinnedItems( - last: Int - first: Int - before: String - after: String - types: [GitHubPinnableItemType!] - ): GitHubPinnableItemConnection! + pinnedItems(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filter the types of pinned items that are returned. + """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! """ Returns how many more items this profile owner can pin to their profile. """ @@ -83696,7 +86682,15 @@ type GitHubProfileItemShowcase { """ The repositories and gists in the showcase. If the profile owner has any pinned items, those will be returned. Otherwise, the profile owner's popular repositories will be returned. """ - items(last: Int, first: Int, before: String, after: String): GitHubPinnableItemConnection! + items(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubPinnableItemConnection! } enum GitHubAuditLogOrderField { @@ -83996,7 +86990,9 @@ type BrexExport implements OneGraphNode & BrexNode { """ status: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -84079,7 +87075,9 @@ type BrexFedachParticipant implements OneGraphNode & BrexNode { """ servicingFrbNumber: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -84130,7 +87128,9 @@ type BrexFedwireParticipant implements OneGraphNode & BrexNode { """ telegraphicName: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -84165,7 +87165,9 @@ type BrexIntegrationErrorDetails implements OneGraphNode & BrexNode { """ minPostedAt: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -84195,7 +87197,9 @@ type BrexIntegrationRulesFilterFacet implements OneGraphNode & BrexNode { """ type: BrexIntegrationRulesFilterFacetType - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -84214,7 +87218,9 @@ type BrexIntegrationUser implements OneGraphNode & BrexNode { """ user: BrexUser - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -84295,7 +87301,9 @@ type BrexMilesTransfer implements OneGraphNode & BrexNode { """ toUser: BrexUser - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -84638,7 +87646,9 @@ type BrexOnboardingBlueprint implements OneGraphNode & BrexNode { Determines which application handler will be used to process the application """ type: BrexOnboardingBlueprintType! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -84673,7 +87683,9 @@ type BrexOnboardingApplication implements OneGraphNode & BrexNode { The status of the application """ status: BrexOnboardingApplicationStatus! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -84717,7 +87729,9 @@ type BrexOnboardingInformationRequest implements OneGraphNode & BrexNode { """ type: BrexOnboardingInformationRequestType! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -84772,7 +87786,9 @@ type BrexProductApplication implements OneGraphNode & BrexNode { """ status: BrexProductApplicationStatus - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -84830,7 +87846,9 @@ type BrexReferral implements OneGraphNode & BrexNode { """ status: BrexReferralStatus! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -84885,7 +87903,9 @@ type BrexRewardsCampaign implements OneGraphNode & BrexNode { """ rewardsTriggers(last: Int, first: Int, before: String, after: String): BrexRewardsTriggerConnection - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -84944,7 +87964,9 @@ type BrexRole implements OneGraphNode & BrexNode { """ rules: [BrexRoleRule] - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85044,7 +88066,9 @@ type BrexServicingPolicy implements OneGraphNode & BrexNode { The ID of an object """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85206,7 +88230,9 @@ type BrexLoyaltyProgram implements OneGraphNode & BrexNode { """ quote: BrexMilesTransferQuote - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85237,7 +88263,9 @@ type BrexProgramMembership implements OneGraphNode & BrexNode { """ membershipId: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85414,7 +88442,9 @@ type BrexNotificationSubscription implements OneGraphNode & BrexNode { """ notificationType: BrexNotificationType - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85474,7 +88504,9 @@ type BrexChannel implements OneGraphNode & BrexNode { """ status: BrexChannelStatus - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85665,7 +88697,9 @@ type BrexFinancialBalance implements OneGraphNode & BrexNode { The ID of an object """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85770,7 +88804,9 @@ type BrexFinancialInstitution implements OneGraphNode & BrexNode { """ website: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85831,7 +88867,9 @@ type BrexFinancialAccount implements OneGraphNode & BrexNode { """ source: BrexFinancialSource - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -85890,7 +88928,9 @@ type BrexFinancialSource implements OneGraphNode & BrexNode { """ status: BrexFinancialSourceStatus - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86308,7 +89348,9 @@ type BrexDepositsTransaction implements OneGraphNode & BrexNode { """ type: BrexDepositsTransactionType! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86379,7 +89421,9 @@ type BrexDepositsStatement implements OneGraphNode & BrexNode { """ periodStartTime: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86499,7 +89543,9 @@ type BrexCounterparty implements OneGraphNode & BrexNode { """ type: BrexType - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86631,7 +89677,9 @@ type BrexDepositsAccount implements OneGraphNode & BrexNode { before: String after: String ): BrexDepositsTransactionConnection - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86828,7 +89876,9 @@ type BrexCollectionIntention implements OneGraphNode & BrexNode { """ status: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86855,7 +89905,9 @@ type BrexRewardsRefund implements OneGraphNode & BrexNode { """ refundedStatementEntry: BrexStatementEntry! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86920,7 +89972,9 @@ type BrexStatementEntryLens implements OneGraphNode & BrexNode { """ userCategory: BrexUserCategory - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -86948,7 +90002,9 @@ type BrexExportItem implements OneGraphNode & BrexNode { """ status: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87027,7 +90083,9 @@ type BrexStatementEntry implements OneGraphNode & BrexNode { """ userCategory: BrexUserCategory - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87140,7 +90198,9 @@ type BrexAsset implements OneGraphNode & BrexNode { """ presignedDownloadUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87163,7 +90223,9 @@ type BrexReceipt implements OneGraphNode & BrexNode { """ origin: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87276,7 +90338,9 @@ type BrexIntegrationRule implements OneGraphNode & BrexNode { """ type: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87303,7 +90367,9 @@ type BrexIntegrationRuleEvaluation implements OneGraphNode & BrexNode { """ value: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87405,7 +90471,9 @@ type BrexExternalIntegrationEntity implements OneGraphNode & BrexNode { """ vendorInternalId: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87440,7 +90508,9 @@ type BrexTransactionLens implements OneGraphNode & BrexNode { """ userCategory: BrexUserCategory - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87491,7 +90561,9 @@ type BrexCardAcceptor implements OneGraphNode & BrexNode { """ zip: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87564,7 +90636,9 @@ type BrexDepartment implements OneGraphNode & BrexNode { """ users(last: Int, first: Int, before: String, after: String): BrexUserConnection - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87627,7 +90701,9 @@ type BrexLocation implements OneGraphNode & BrexNode { """ users(last: Int, first: Int, before: String, after: String): BrexUserConnection - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87659,7 +90735,9 @@ type BrexMerchantCategory implements OneGraphNode & BrexNode { """ name: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87690,7 +90768,9 @@ type BrexMerchant implements OneGraphNode & BrexNode { """ website: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87713,7 +90793,9 @@ type BrexPerMerchantStats implements OneGraphNode & BrexNode { """ merchant: BrexMerchant - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87836,7 +90918,9 @@ type BrexCard implements OneGraphNode & BrexNode { """ user: BrexUser - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87933,7 +91017,9 @@ type BrexTransaction implements OneGraphNode & BrexNode { """ userCategory: BrexUserCategory - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87956,7 +91042,9 @@ type BrexRewardsTrigger implements OneGraphNode & BrexNode { """ name: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -87979,7 +91067,9 @@ type BrexRewardsAccrualEntry implements OneGraphNode & BrexNode { """ rewardsTrigger: BrexRewardsTrigger - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88067,7 +91157,9 @@ type BrexRule implements OneGraphNode & BrexNode { """ user: BrexUser - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88118,7 +91210,9 @@ type BrexTransactionOperation implements OneGraphNode & BrexNode { """ type: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88182,7 +91276,9 @@ type BrexCollectionAttempt implements OneGraphNode & BrexNode { """ status: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88281,7 +91377,9 @@ type BrexStatement implements OneGraphNode & BrexNode { """ status: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88325,7 +91423,9 @@ type BrexUnderwritingAnalysisFlag implements OneGraphNode & BrexNode { """ name: BrexUnderwritingAnalysisFlagName! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88372,7 +91472,9 @@ type BrexUnderwritingAnalysis implements OneGraphNode & BrexNode { The ID of an object """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88395,7 +91497,9 @@ type BrexUnderwritingAccount implements OneGraphNode & BrexNode { """ status: BrexUnderwritingAccountStatus! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88460,7 +91564,9 @@ type BrexFundingSourceData implements OneGraphNode & BrexNode { """ routingNumber: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88503,7 +91609,9 @@ type BrexFundingSource implements OneGraphNode & BrexNode { """ type: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88704,7 +91812,9 @@ type BrexAccount implements OneGraphNode & BrexNode { """ incorporationState: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88812,7 +91922,9 @@ type BrexUser implements OneGraphNode & BrexNode { """ status: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -88876,7 +91988,9 @@ type BrexCredential implements OneGraphNode & BrexNode { """ vendor: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89028,7 +92142,9 @@ type BrexIntegration implements OneGraphNode & BrexNode { """ vendor: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89083,7 +92199,9 @@ type BrexUserCategory implements OneGraphNode & BrexNode { """ vendorInternalId: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89177,175 +92295,261 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ Fetches an object given its globally unique `ID`. """ - node(nodeId: ID!): CrunchbaseNode + node(""" + The globally unique `ID`. + """ nodeId: ID!): CrunchbaseNode """ Reads and enables pagination through a set of `Acquisition`. """ - acquisitions( - filter: CrunchbaseAcquisitionFilter - orderBy: [CrunchbaseAcquisitionsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseAcquisitionsConnection + acquisitions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseAcquisitionFilter, """ + The method to use when ordering `Acquisition`. + """ orderBy: [CrunchbaseAcquisitionsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseAcquisitionsConnection """ Reads and enables pagination through a set of `Address`. """ - addresses( - filter: CrunchbaseAddressFilter - orderBy: [CrunchbaseAddressesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseAddressesConnection + addresses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseAddressFilter, """ + The method to use when ordering `Address`. + """ orderBy: [CrunchbaseAddressesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseAddressesConnection """ Reads and enables pagination through a set of `Category`. """ - categories( - filter: CrunchbaseCategoryFilter - orderBy: [CrunchbaseCategoriesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseCategoriesConnection + categories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseCategoryFilter, """ + The method to use when ordering `Category`. + """ orderBy: [CrunchbaseCategoriesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseCategoriesConnection """ Reads and enables pagination through a set of `Degree`. """ - degrees( - filter: CrunchbaseDegreeFilter - orderBy: [CrunchbaseDegreesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseDegreesConnection + degrees(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseDegreeFilter, """ + The method to use when ordering `Degree`. + """ orderBy: [CrunchbaseDegreesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseDegreesConnection """ Reads and enables pagination through a set of `Fund`. """ - funds( - filter: CrunchbaseFundFilter - orderBy: [CrunchbaseFundsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseFundsConnection + funds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseFundFilter, """ + The method to use when ordering `Fund`. + """ orderBy: [CrunchbaseFundsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseFundsConnection """ Reads and enables pagination through a set of `FundingRound`. """ - fundingRounds( - filter: CrunchbaseFundingRoundFilter - orderBy: [CrunchbaseFundingRoundsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseFundingRoundsConnection + fundingRounds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseFundingRoundFilter, """ + The method to use when ordering `FundingRound`. + """ orderBy: [CrunchbaseFundingRoundsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseFundingRoundsConnection """ Reads and enables pagination through a set of `Image`. """ - images( - filter: CrunchbaseImageFilter - orderBy: [CrunchbaseImagesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseImagesConnection + images(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseImageFilter, """ + The method to use when ordering `Image`. + """ orderBy: [CrunchbaseImagesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseImagesConnection """ Reads and enables pagination through a set of `Investment`. """ - investments( - filter: CrunchbaseInvestmentFilter - orderBy: [CrunchbaseInvestmentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseInvestmentsConnection + investments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseInvestmentFilter, """ + The method to use when ordering `Investment`. + """ orderBy: [CrunchbaseInvestmentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseInvestmentsConnection """ Reads and enables pagination through a set of `Ipo`. """ - ipos( - filter: CrunchbaseIpoFilter - orderBy: [CrunchbaseIposOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseIposConnection + ipos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseIpoFilter, """ + The method to use when ordering `Ipo`. + """ orderBy: [CrunchbaseIposOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseIposConnection """ Reads and enables pagination through a set of `Job`. """ - jobs( - filter: CrunchbaseJobFilter - orderBy: [CrunchbaseJobsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseJobsConnection + jobs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseJobFilter, """ + The method to use when ordering `Job`. + """ orderBy: [CrunchbaseJobsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseJobsConnection """ Reads and enables pagination through a set of `Location`. """ - locations( - filter: CrunchbaseLocationFilter - orderBy: [CrunchbaseLocationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseLocationsConnection + locations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseLocationFilter, """ + The method to use when ordering `Location`. + """ orderBy: [CrunchbaseLocationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseLocationsConnection """ Reads and enables pagination through a set of `Organization`. """ - organizations( - filter: CrunchbaseOrganizationFilter - orderBy: [CrunchbaseOrganizationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseOrganizationsConnection + organizations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseOrganizationFilter, """ + The method to use when ordering `Organization`. + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseOrganizationsConnection """ Reads and enables pagination through a set of `Person`. """ - people( - filter: CrunchbasePersonFilter - orderBy: [CrunchbasePeopleOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbasePeopleConnection + people(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbasePersonFilter, """ + The method to use when ordering `Person`. + """ orderBy: [CrunchbasePeopleOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbasePeopleConnection """ Reads and enables pagination through a set of `SyncState`. """ - syncStates( - filter: CrunchbaseSyncStateFilter - orderBy: [CrunchbaseSyncStatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseSyncStatesConnection + syncStates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseSyncStateFilter, """ + The method to use when ordering `SyncState`. + """ orderBy: [CrunchbaseSyncStatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseSyncStatesConnection """ """ @@ -89405,60 +92609,90 @@ type CrunchbaseQuery implements OneGraphNode & CrunchbaseNode { """ Reads a single `Acquisition` using its globally unique `ID`. """ - acquisition(nodeId: ID!): CrunchbaseAcquisition + acquisition(""" + The globally unique `ID` to be used in selecting a single `Acquisition`. + """ nodeId: ID!): CrunchbaseAcquisition """ Reads a single `Address` using its globally unique `ID`. """ - address(nodeId: ID!): CrunchbaseAddress + address(""" + The globally unique `ID` to be used in selecting a single `Address`. + """ nodeId: ID!): CrunchbaseAddress """ Reads a single `Category` using its globally unique `ID`. """ - category(nodeId: ID!): CrunchbaseCategory + category(""" + The globally unique `ID` to be used in selecting a single `Category`. + """ nodeId: ID!): CrunchbaseCategory """ Reads a single `Degree` using its globally unique `ID`. """ - degree(nodeId: ID!): CrunchbaseDegree + degree(""" + The globally unique `ID` to be used in selecting a single `Degree`. + """ nodeId: ID!): CrunchbaseDegree """ Reads a single `Fund` using its globally unique `ID`. """ - fund(nodeId: ID!): CrunchbaseFund + fund(""" + The globally unique `ID` to be used in selecting a single `Fund`. + """ nodeId: ID!): CrunchbaseFund """ Reads a single `FundingRound` using its globally unique `ID`. """ - fundingRound(nodeId: ID!): CrunchbaseFundingRound + fundingRound(""" + The globally unique `ID` to be used in selecting a single `FundingRound`. + """ nodeId: ID!): CrunchbaseFundingRound """ Reads a single `Image` using its globally unique `ID`. """ - image(nodeId: ID!): CrunchbaseImage + image(""" + The globally unique `ID` to be used in selecting a single `Image`. + """ nodeId: ID!): CrunchbaseImage """ Reads a single `Investment` using its globally unique `ID`. """ - investment(nodeId: ID!): CrunchbaseInvestment + investment(""" + The globally unique `ID` to be used in selecting a single `Investment`. + """ nodeId: ID!): CrunchbaseInvestment """ Reads a single `Ipo` using its globally unique `ID`. """ - ipo(nodeId: ID!): CrunchbaseIpo + ipo(""" + The globally unique `ID` to be used in selecting a single `Ipo`. + """ nodeId: ID!): CrunchbaseIpo """ Reads a single `Job` using its globally unique `ID`. """ - job(nodeId: ID!): CrunchbaseJob + job(""" + The globally unique `ID` to be used in selecting a single `Job`. + """ nodeId: ID!): CrunchbaseJob """ Reads a single `Location` using its globally unique `ID`. """ - location(nodeId: ID!): CrunchbaseLocation + location(""" + The globally unique `ID` to be used in selecting a single `Location`. + """ nodeId: ID!): CrunchbaseLocation """ Reads a single `Organization` using its globally unique `ID`. """ - organization(nodeId: ID!): CrunchbaseOrganization + organization(""" + The globally unique `ID` to be used in selecting a single `Organization`. + """ nodeId: ID!): CrunchbaseOrganization """ Reads a single `Person` using its globally unique `ID`. """ - person(nodeId: ID!): CrunchbasePerson + person(""" + The globally unique `ID` to be used in selecting a single `Person`. + """ nodeId: ID!): CrunchbasePerson """ Reads a single `SyncState` using its globally unique `ID`. """ - syncState(nodeId: ID!): CrunchbaseSyncState - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + syncState(""" + The globally unique `ID` to be used in selecting a single `SyncState`. + """ nodeId: ID!): CrunchbaseSyncState + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -89969,7 +93203,9 @@ type CrunchbaseIpo implements OneGraphNode & CrunchbaseNode { Reads a single `Organization` that is related to this `Ipo`. """ fundedCompany: CrunchbaseOrganization - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90214,7 +93450,9 @@ type CrunchbaseAcquisition implements OneGraphNode & CrunchbaseNode { Reads a single `Organization` that is related to this `Acquisition`. """ acquiree: CrunchbaseOrganization - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90444,40 +93682,60 @@ type CrunchbaseAddress implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Organization`. """ - organizationsHeadquartered( - filter: CrunchbaseOrganizationFilter - orderBy: [CrunchbaseOrganizationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseOrganizationsConnection! + organizationsHeadquartered(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseOrganizationFilter, """ + The method to use when ordering `Organization`. + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Image`. """ - images( - filter: CrunchbaseImageFilter - orderBy: [CrunchbaseImagesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseImagesConnection! + images(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseImageFilter, """ + The method to use when ordering `Image`. + """ orderBy: [CrunchbaseImagesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseImagesConnection! """ Reads and enables pagination through a set of `Organization`. """ - organizationsWithOffice( - filter: CrunchbaseOrganizationFilter - orderBy: [CrunchbaseOrganizationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseOrganizationsConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + organizationsWithOffice(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseOrganizationFilter, """ + The method to use when ordering `Organization`. + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseOrganizationsConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -90929,28 +94187,42 @@ type CrunchbaseFund implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Organization`. """ - fundInvestorOrganizations( - filter: CrunchbaseOrganizationFilter - orderBy: [CrunchbaseOrganizationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseOrganizationsConnection! + fundInvestorOrganizations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseOrganizationFilter, """ + The method to use when ordering `Organization`. + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Person`. """ - fundInvestorPeople( - filter: CrunchbasePersonFilter - orderBy: [CrunchbasePeopleOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbasePeopleConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + fundInvestorPeople(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbasePersonFilter, """ + The method to use when ordering `Person`. + """ orderBy: [CrunchbasePeopleOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbasePeopleConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91218,40 +94490,60 @@ type CrunchbaseFundingRound implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Investment`. """ - investments( - filter: CrunchbaseInvestmentFilter - orderBy: [CrunchbaseInvestmentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseInvestmentsConnection! + investments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseInvestmentFilter, """ + The method to use when ordering `Investment`. + """ orderBy: [CrunchbaseInvestmentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseInvestmentsConnection! """ Reads and enables pagination through a set of `Person`. """ - peopleInvestedIn( - filter: CrunchbasePersonFilter - orderBy: [CrunchbasePeopleOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbasePeopleConnection! + peopleInvestedIn(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbasePersonFilter, """ + The method to use when ordering `Person`. + """ orderBy: [CrunchbasePeopleOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbasePeopleConnection! """ Reads and enables pagination through a set of `Organization`. """ - organizationsInvestedIn( - filter: CrunchbaseOrganizationFilter - orderBy: [CrunchbaseOrganizationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseOrganizationsConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + organizationsInvestedIn(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseOrganizationFilter, """ + The method to use when ordering `Organization`. + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseOrganizationsConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91329,40 +94621,60 @@ type CrunchbaseInvestment implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Organization`. """ - investorOrganizations( - filter: CrunchbaseOrganizationFilter - orderBy: [CrunchbaseOrganizationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseOrganizationsConnection! + investorOrganizations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseOrganizationFilter, """ + The method to use when ordering `Organization`. + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Person`. """ - investorPeople( - filter: CrunchbasePersonFilter - orderBy: [CrunchbasePeopleOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbasePeopleConnection! + investorPeople(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbasePersonFilter, """ + The method to use when ordering `Person`. + """ orderBy: [CrunchbasePeopleOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbasePeopleConnection! """ Reads and enables pagination through a set of `Person`. """ - investmentPartners( - filter: CrunchbasePersonFilter - orderBy: [CrunchbasePeopleOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbasePeopleConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + investmentPartners(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbasePersonFilter, """ + The method to use when ordering `Person`. + """ orderBy: [CrunchbasePeopleOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbasePeopleConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91509,7 +94821,9 @@ type CrunchbaseJob implements OneGraphNode & CrunchbaseNode { Reads a single `Organization` that is related to this `Job`. """ organization: CrunchbaseOrganization - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91640,7 +94954,9 @@ type CrunchbaseDegree implements OneGraphNode & CrunchbaseNode { Reads a single `Person` that is related to this `Degree`. """ person: CrunchbasePerson - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -91886,28 +95202,42 @@ type CrunchbaseLocation implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Location`. """ - subLocations( - filter: CrunchbaseLocationFilter - orderBy: [CrunchbaseLocationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseLocationsConnection! + subLocations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseLocationFilter, """ + The method to use when ordering `Location`. + """ orderBy: [CrunchbaseLocationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseLocationsConnection! """ Reads and enables pagination through a set of `Person`. """ - peopleByPrimaryLocationId( - filter: CrunchbasePersonFilter - orderBy: [CrunchbasePeopleOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbasePeopleConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + peopleByPrimaryLocationId(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbasePersonFilter, """ + The method to use when ordering `Person`. + """ orderBy: [CrunchbasePeopleOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbasePeopleConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -92029,184 +95359,276 @@ type CrunchbasePerson implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Degree`. """ - degrees( - filter: CrunchbaseDegreeFilter - orderBy: [CrunchbaseDegreesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseDegreesConnection! + degrees(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseDegreeFilter, """ + The method to use when ordering `Degree`. + """ orderBy: [CrunchbaseDegreesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseDegreesConnection! """ Reads and enables pagination through a set of `Job`. """ - jobs( - filter: CrunchbaseJobFilter - orderBy: [CrunchbaseJobsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseJobsConnection! + jobs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseJobFilter, """ + The method to use when ordering `Job`. + """ orderBy: [CrunchbaseJobsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseJobsConnection! """ Reads and enables pagination through a set of `Investment`. """ - investmentsAsInvestee( - filter: CrunchbaseInvestmentFilter - orderBy: [CrunchbaseInvestmentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseInvestmentsConnection! + investmentsAsInvestee(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseInvestmentFilter, """ + The method to use when ordering `Investment`. + """ orderBy: [CrunchbaseInvestmentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseInvestmentsConnection! """ Reads and enables pagination through a set of `FundInvestor`. """ - fundInvestors( - filter: CrunchbaseFundInvestorFilter - orderBy: [CrunchbaseFundInvestorsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseFundInvestorsConnection! + fundInvestors(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseFundInvestorFilter, """ + The method to use when ordering `FundInvestor`. + """ orderBy: [CrunchbaseFundInvestorsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseFundInvestorsConnection! """ Reads and enables pagination through a set of `Organization`. """ - graduatedSchools( - filter: CrunchbaseOrganizationFilter - orderBy: [CrunchbaseOrganizationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseOrganizationsConnection! + graduatedSchools(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseOrganizationFilter, """ + The method to use when ordering `Organization`. + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Organization`. """ - organizationsByJobs( - filter: CrunchbaseOrganizationFilter - orderBy: [CrunchbaseOrganizationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseOrganizationsConnection! + organizationsByJobs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseOrganizationFilter, """ + The method to use when ordering `Organization`. + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `FundingRound`. """ - fundingRoundsAsInvestee( - filter: CrunchbaseFundingRoundFilter - orderBy: [CrunchbaseFundingRoundsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseFundingRoundsConnection! + fundingRoundsAsInvestee(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseFundingRoundFilter, """ + The method to use when ordering `FundingRound`. + """ orderBy: [CrunchbaseFundingRoundsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseFundingRoundsConnection! """ Reads and enables pagination through a set of `Organization`. """ - organizationsInvestedIn( - filter: CrunchbaseOrganizationFilter - orderBy: [CrunchbaseOrganizationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseOrganizationsConnection! + organizationsInvestedIn(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseOrganizationFilter, """ + The method to use when ordering `Organization`. + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Organization`. """ - foundedOrganizations( - filter: CrunchbaseOrganizationFilter - orderBy: [CrunchbaseOrganizationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseOrganizationsConnection! + foundedOrganizations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseOrganizationFilter, """ + The method to use when ordering `Organization`. + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Investment`. """ - investmentsAsInvestor( - filter: CrunchbaseInvestmentFilter - orderBy: [CrunchbaseInvestmentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseInvestmentsConnection! + investmentsAsInvestor(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseInvestmentFilter, """ + The method to use when ordering `Investment`. + """ orderBy: [CrunchbaseInvestmentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseInvestmentsConnection! """ Reads and enables pagination through a set of `Organization`. """ - investorOrganizations( - filter: CrunchbaseOrganizationFilter - orderBy: [CrunchbaseOrganizationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseOrganizationsConnection! + investorOrganizations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseOrganizationFilter, """ + The method to use when ordering `Organization`. + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Investment`. """ - investmentsAsPartner( - filter: CrunchbaseInvestmentFilter - orderBy: [CrunchbaseInvestmentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseInvestmentsConnection! + investmentsAsPartner(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseInvestmentFilter, """ + The method to use when ordering `Investment`. + """ orderBy: [CrunchbaseInvestmentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseInvestmentsConnection! """ Reads and enables pagination through a set of `Job`. """ - advisorRoleJobs( - filter: CrunchbaseJobFilter - orderBy: [CrunchbaseJobsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseJobsConnection! + advisorRoleJobs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseJobFilter, """ + The method to use when ordering `Job`. + """ orderBy: [CrunchbaseJobsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseJobsConnection! """ Reads and enables pagination through a set of `Fund`. """ - investedInFunds( - filter: CrunchbaseFundFilter - orderBy: [CrunchbaseFundsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseFundsConnection! + investedInFunds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseFundFilter, """ + The method to use when ordering `Fund`. + """ orderBy: [CrunchbaseFundsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseFundsConnection! """ Reads and enables pagination through a set of `Organization`. """ - fundInvestorOrganizations( - filter: CrunchbaseOrganizationFilter - orderBy: [CrunchbaseOrganizationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseOrganizationsConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + fundInvestorOrganizations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseOrganizationFilter, """ + The method to use when ordering `Organization`. + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseOrganizationsConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -96509,28 +99931,42 @@ type CrunchbaseImage implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Organization`. """ - organizations( - filter: CrunchbaseOrganizationFilter - orderBy: [CrunchbaseOrganizationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseOrganizationsConnection! + organizations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseOrganizationFilter, """ + The method to use when ordering `Organization`. + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseOrganizationsConnection! """ Reads and enables pagination through a set of `Person`. """ - peopleByPrimaryImageId( - filter: CrunchbasePersonFilter - orderBy: [CrunchbasePeopleOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbasePeopleConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + peopleByPrimaryImageId(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbasePersonFilter, """ + The method to use when ordering `Person`. + """ orderBy: [CrunchbasePeopleOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbasePeopleConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -96793,99 +100229,147 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Degree`. """ - degreesIssued( - filter: CrunchbaseDegreeFilter - orderBy: [CrunchbaseDegreesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseDegreesConnection! + degreesIssued(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseDegreeFilter, """ + The method to use when ordering `Degree`. + """ orderBy: [CrunchbaseDegreesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseDegreesConnection! """ Reads and enables pagination through a set of `Job`. """ - jobs( - filter: CrunchbaseJobFilter - orderBy: [CrunchbaseJobsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseJobsConnection! + jobs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseJobFilter, """ + The method to use when ordering `Job`. + """ orderBy: [CrunchbaseJobsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseJobsConnection! """ Reads and enables pagination through a set of `Fund`. """ - ventureFirmFunds( - filter: CrunchbaseFundFilter - orderBy: [CrunchbaseFundsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseFundsConnection! + ventureFirmFunds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseFundFilter, """ + The method to use when ordering `Fund`. + """ orderBy: [CrunchbaseFundsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseFundsConnection! """ Reads and enables pagination through a set of `FundingRound`. """ - fundingRounds( - filter: CrunchbaseFundingRoundFilter - orderBy: [CrunchbaseFundingRoundsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseFundingRoundsConnection! + fundingRounds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseFundingRoundFilter, """ + The method to use when ordering `FundingRound`. + """ orderBy: [CrunchbaseFundingRoundsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseFundingRoundsConnection! """ Reads and enables pagination through a set of `Investment`. """ - investmentsAsInvestee( - filter: CrunchbaseInvestmentFilter - orderBy: [CrunchbaseInvestmentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseInvestmentsConnection! + investmentsAsInvestee(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseInvestmentFilter, """ + The method to use when ordering `Investment`. + """ orderBy: [CrunchbaseInvestmentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseInvestmentsConnection! """ Reads and enables pagination through a set of `Acquisition`. """ - acquisitionsAsAcquirer( - filter: CrunchbaseAcquisitionFilter - orderBy: [CrunchbaseAcquisitionsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseAcquisitionsConnection! + acquisitionsAsAcquirer(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseAcquisitionFilter, """ + The method to use when ordering `Acquisition`. + """ orderBy: [CrunchbaseAcquisitionsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseAcquisitionsConnection! """ Reads and enables pagination through a set of `Acquisition`. """ - acquisitionsAsAcquiree( - filter: CrunchbaseAcquisitionFilter - orderBy: [CrunchbaseAcquisitionsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseAcquisitionsConnection! + acquisitionsAsAcquiree(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseAcquisitionFilter, """ + The method to use when ordering `Acquisition`. + """ orderBy: [CrunchbaseAcquisitionsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseAcquisitionsConnection! """ Reads and enables pagination through a set of `Ipo`. """ - ipos( - filter: CrunchbaseIpoFilter - orderBy: [CrunchbaseIposOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseIposConnection! + ipos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseIpoFilter, """ + The method to use when ordering `Ipo`. + """ orderBy: [CrunchbaseIposOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseIposConnection! """ """ @@ -96905,184 +100389,276 @@ type CrunchbaseOrganization implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Address`. """ - offices( - filter: CrunchbaseAddressFilter - orderBy: [CrunchbaseAddressesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseAddressesConnection! + offices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseAddressFilter, """ + The method to use when ordering `Address`. + """ orderBy: [CrunchbaseAddressesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseAddressesConnection! """ Reads and enables pagination through a set of `Person`. """ - degreeHolders( - filter: CrunchbasePersonFilter - orderBy: [CrunchbasePeopleOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbasePeopleConnection! + degreeHolders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbasePersonFilter, """ + The method to use when ordering `Person`. + """ orderBy: [CrunchbasePeopleOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbasePeopleConnection! """ Reads and enables pagination through a set of `Person`. """ - peopleByJobs( - filter: CrunchbasePersonFilter - orderBy: [CrunchbasePeopleOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbasePeopleConnection! + peopleByJobs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbasePersonFilter, """ + The method to use when ordering `Person`. + """ orderBy: [CrunchbasePeopleOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbasePeopleConnection! """ Reads and enables pagination through a set of `FundingRound`. """ - fundingRoundsAsInvestee( - filter: CrunchbaseFundingRoundFilter - orderBy: [CrunchbaseFundingRoundsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseFundingRoundsConnection! + fundingRoundsAsInvestee(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseFundingRoundFilter, """ + The method to use when ordering `FundingRound`. + """ orderBy: [CrunchbaseFundingRoundsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseFundingRoundsConnection! """ Reads and enables pagination through a set of `Person`. """ - peopleInvestedIn( - filter: CrunchbasePersonFilter - orderBy: [CrunchbasePeopleOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbasePeopleConnection! + peopleInvestedIn(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbasePersonFilter, """ + The method to use when ordering `Person`. + """ orderBy: [CrunchbasePeopleOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbasePeopleConnection! """ Reads and enables pagination through a set of `Person`. """ - founders( - filter: CrunchbasePersonFilter - orderBy: [CrunchbasePeopleOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbasePeopleConnection! + founders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbasePersonFilter, """ + The method to use when ordering `Person`. + """ orderBy: [CrunchbasePeopleOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbasePeopleConnection! """ Reads and enables pagination through a set of `Job`. """ - currentTeamJobs( - filter: CrunchbaseJobFilter - orderBy: [CrunchbaseJobsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseJobsConnection! + currentTeamJobs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseJobFilter, """ + The method to use when ordering `Job`. + """ orderBy: [CrunchbaseJobsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseJobsConnection! """ Reads and enables pagination through a set of `Job`. """ - featuredTeamJobs( - filter: CrunchbaseJobFilter - orderBy: [CrunchbaseJobsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseJobsConnection! + featuredTeamJobs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseJobFilter, """ + The method to use when ordering `Job`. + """ orderBy: [CrunchbaseJobsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseJobsConnection! """ Reads and enables pagination through a set of `Job`. """ - pastTeamJobs( - filter: CrunchbaseJobFilter - orderBy: [CrunchbaseJobsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseJobsConnection! + pastTeamJobs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseJobFilter, """ + The method to use when ordering `Job`. + """ orderBy: [CrunchbaseJobsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseJobsConnection! """ Reads and enables pagination through a set of `Job`. """ - boardAndAdvisorJobs( - filter: CrunchbaseJobFilter - orderBy: [CrunchbaseJobsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseJobsConnection! + boardAndAdvisorJobs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseJobFilter, """ + The method to use when ordering `Job`. + """ orderBy: [CrunchbaseJobsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseJobsConnection! """ Reads and enables pagination through a set of `Investment`. """ - investmentsAsInvestor( - filter: CrunchbaseInvestmentFilter - orderBy: [CrunchbaseInvestmentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseInvestmentsConnection! + investmentsAsInvestor(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseInvestmentFilter, """ + The method to use when ordering `Investment`. + """ orderBy: [CrunchbaseInvestmentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseInvestmentsConnection! """ Reads and enables pagination through a set of `Person`. """ - investorPeople( - filter: CrunchbasePersonFilter - orderBy: [CrunchbasePeopleOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbasePeopleConnection! + investorPeople(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbasePersonFilter, """ + The method to use when ordering `Person`. + """ orderBy: [CrunchbasePeopleOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbasePeopleConnection! """ Reads and enables pagination through a set of `Category`. """ - categories( - filter: CrunchbaseCategoryFilter - orderBy: [CrunchbaseCategoriesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseCategoriesConnection! + categories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseCategoryFilter, """ + The method to use when ordering `Category`. + """ orderBy: [CrunchbaseCategoriesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseCategoriesConnection! """ Reads and enables pagination through a set of `Fund`. """ - investedInFunds( - filter: CrunchbaseFundFilter - orderBy: [CrunchbaseFundsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseFundsConnection! + investedInFunds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseFundFilter, """ + The method to use when ordering `Fund`. + """ orderBy: [CrunchbaseFundsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseFundsConnection! """ Reads and enables pagination through a set of `Person`. """ - fundInvestorPeople( - filter: CrunchbasePersonFilter - orderBy: [CrunchbasePeopleOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbasePeopleConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + fundInvestorPeople(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbasePersonFilter, """ + The method to use when ordering `Person`. + """ orderBy: [CrunchbasePeopleOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbasePeopleConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -97150,16 +100726,24 @@ type CrunchbaseCategory implements OneGraphNode & CrunchbaseNode { """ Reads and enables pagination through a set of `Organization`. """ - organizations( - filter: CrunchbaseOrganizationFilter - orderBy: [CrunchbaseOrganizationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): CrunchbaseOrganizationsConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + organizations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: CrunchbaseOrganizationFilter, """ + The method to use when ordering `Organization`. + """ orderBy: [CrunchbaseOrganizationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): CrunchbaseOrganizationsConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -97192,7 +100776,9 @@ type CrunchbaseSyncState implements OneGraphNode & CrunchbaseNode { """ lastUpdatedAt: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -98619,15 +102205,21 @@ type QuickbooksBillPaymentLineItem { """ Reads and enables pagination through a set of `BillPaymentLineItemTransaction`. """ - linkedTransactions( - filter: QuickbooksBillPaymentLineItemTransactionFilter - orderBy: [QuickbooksBillPaymentLineItemTransactionsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillPaymentLineItemTransactionsConnection! + linkedTransactions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillPaymentLineItemTransactionFilter, """ + The method to use when ordering `BillPaymentLineItemTransaction`. + """ orderBy: [QuickbooksBillPaymentLineItemTransactionsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillPaymentLineItemTransactionsConnection! } """ @@ -100775,415 +104367,621 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ Fetches an object given its globally unique `ID`. """ - node(nodeId: ID!): QuickbooksNode + node(""" + The globally unique `ID`. + """ nodeId: ID!): QuickbooksNode """ Reads and enables pagination through a set of `Account`. """ - accounts( - filter: QuickbooksAccountFilter - orderBy: [QuickbooksAccountsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksAccountsConnection + accounts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksAccountFilter, """ + The method to use when ordering `Account`. + """ orderBy: [QuickbooksAccountsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksAccountsConnection """ Reads and enables pagination through a set of `Bill`. """ - bills( - filter: QuickbooksBillFilter - orderBy: [QuickbooksBillsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillsConnection + bills(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillFilter, """ + The method to use when ordering `Bill`. + """ orderBy: [QuickbooksBillsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillsConnection """ Reads and enables pagination through a set of `BillPayment`. """ - billPayments( - filter: QuickbooksBillPaymentFilter - orderBy: [QuickbooksBillPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillPaymentsConnection + billPayments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillPaymentFilter, """ + The method to use when ordering `BillPayment`. + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillPaymentsConnection """ Reads and enables pagination through a set of `Class`. """ - classes( - filter: QuickbooksClassFilter - orderBy: [QuickbooksClassesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksClassesConnection + classes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksClassFilter, """ + The method to use when ordering `Class`. + """ orderBy: [QuickbooksClassesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksClassesConnection """ Reads and enables pagination through a set of `CompanyInfo`. """ - companyInfos( - filter: QuickbooksCompanyInfoFilter - orderBy: [QuickbooksCompanyInfosOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCompanyInfosConnection + companyInfos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCompanyInfoFilter, """ + The method to use when ordering `CompanyInfo`. + """ orderBy: [QuickbooksCompanyInfosOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCompanyInfosConnection """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos( - filter: QuickbooksCreditMemoFilter - orderBy: [QuickbooksCreditMemosOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCreditMemosConnection + creditMemos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCreditMemoFilter, """ + The method to use when ordering `CreditMemo`. + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCreditMemosConnection """ Reads and enables pagination through a set of `Currency`. """ - currencies( - filter: QuickbooksCurrencyFilter - orderBy: [QuickbooksCurrenciesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCurrenciesConnection + currencies(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCurrencyFilter, """ + The method to use when ordering `Currency`. + """ orderBy: [QuickbooksCurrenciesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCurrenciesConnection """ Reads and enables pagination through a set of `Customer`. """ - customers( - filter: QuickbooksCustomerFilter - orderBy: [QuickbooksCustomersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCustomersConnection + customers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCustomerFilter, """ + The method to use when ordering `Customer`. + """ orderBy: [QuickbooksCustomersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCustomersConnection """ Reads and enables pagination through a set of `Department`. """ - departments( - filter: QuickbooksDepartmentFilter - orderBy: [QuickbooksDepartmentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksDepartmentsConnection + departments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksDepartmentFilter, """ + The method to use when ordering `Department`. + """ orderBy: [QuickbooksDepartmentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksDepartmentsConnection """ Reads and enables pagination through a set of `Deposit`. """ - deposits( - filter: QuickbooksDepositFilter - orderBy: [QuickbooksDepositsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksDepositsConnection + deposits(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksDepositFilter, """ + The method to use when ordering `Deposit`. + """ orderBy: [QuickbooksDepositsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksDepositsConnection """ Reads and enables pagination through a set of `Employee`. """ - employees( - filter: QuickbooksEmployeeFilter - orderBy: [QuickbooksEmployeesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEmployeesConnection + employees(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEmployeeFilter, """ + The method to use when ordering `Employee`. + """ orderBy: [QuickbooksEmployeesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEmployeesConnection """ Reads and enables pagination through a set of `Estimate`. """ - estimates( - filter: QuickbooksEstimateFilter - orderBy: [QuickbooksEstimatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEstimatesConnection + estimates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEstimateFilter, """ + The method to use when ordering `Estimate`. + """ orderBy: [QuickbooksEstimatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEstimatesConnection """ Reads and enables pagination through a set of `Invoice`. """ - invoices( - filter: QuickbooksInvoiceFilter - orderBy: [QuickbooksInvoicesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoicesConnection + invoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceFilter, """ + The method to use when ordering `Invoice`. + """ orderBy: [QuickbooksInvoicesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoicesConnection """ Reads and enables pagination through a set of `Item`. """ - items( - filter: QuickbooksItemFilter - orderBy: [QuickbooksItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksItemsConnection + items(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksItemFilter, """ + The method to use when ordering `Item`. + """ orderBy: [QuickbooksItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksItemsConnection """ Reads and enables pagination through a set of `JournalCode`. """ - journalCodes( - filter: QuickbooksJournalCodeFilter - orderBy: [QuickbooksJournalCodesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksJournalCodesConnection + journalCodes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksJournalCodeFilter, """ + The method to use when ordering `JournalCode`. + """ orderBy: [QuickbooksJournalCodesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksJournalCodesConnection """ Reads and enables pagination through a set of `JournalEntry`. """ - journalEntries( - filter: QuickbooksJournalEntryFilter - orderBy: [QuickbooksJournalEntriesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksJournalEntriesConnection + journalEntries(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksJournalEntryFilter, """ + The method to use when ordering `JournalEntry`. + """ orderBy: [QuickbooksJournalEntriesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksJournalEntriesConnection """ Reads and enables pagination through a set of `Payment`. """ - payments( - filter: QuickbooksPaymentFilter - orderBy: [QuickbooksPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPaymentsConnection + payments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPaymentFilter, """ + The method to use when ordering `Payment`. + """ orderBy: [QuickbooksPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPaymentsConnection """ Reads and enables pagination through a set of `PaymentMethod`. """ - paymentMethods( - filter: QuickbooksPaymentMethodFilter - orderBy: [QuickbooksPaymentMethodsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPaymentMethodsConnection + paymentMethods(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPaymentMethodFilter, """ + The method to use when ordering `PaymentMethod`. + """ orderBy: [QuickbooksPaymentMethodsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPaymentMethodsConnection """ Reads and enables pagination through a set of `PhysicalAddress`. """ - physicalAddresses( - filter: QuickbooksPhysicalAddressFilter - orderBy: [QuickbooksPhysicalAddressesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPhysicalAddressesConnection + physicalAddresses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPhysicalAddressFilter, """ + The method to use when ordering `PhysicalAddress`. + """ orderBy: [QuickbooksPhysicalAddressesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPhysicalAddressesConnection """ Reads and enables pagination through a set of `Purchase`. """ - purchases( - filter: QuickbooksPurchaseFilter - orderBy: [QuickbooksPurchasesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPurchasesConnection + purchases(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPurchaseFilter, """ + The method to use when ordering `Purchase`. + """ orderBy: [QuickbooksPurchasesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPurchasesConnection """ Reads and enables pagination through a set of `PurchaseLineItem`. """ - purchaseLineItems( - filter: QuickbooksPurchaseLineItemFilter - orderBy: [QuickbooksPurchaseLineItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPurchaseLineItemsConnection + purchaseLineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPurchaseLineItemFilter, """ + The method to use when ordering `PurchaseLineItem`. + """ orderBy: [QuickbooksPurchaseLineItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPurchaseLineItemsConnection """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts( - filter: QuickbooksRefundReceiptFilter - orderBy: [QuickbooksRefundReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksRefundReceiptsConnection + refundReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksRefundReceiptFilter, """ + The method to use when ordering `RefundReceipt`. + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksRefundReceiptsConnection """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts( - filter: QuickbooksSalesReceiptFilter - orderBy: [QuickbooksSalesReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksSalesReceiptsConnection + salesReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksSalesReceiptFilter, """ + The method to use when ordering `SalesReceipt`. + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksSalesReceiptsConnection """ Reads and enables pagination through a set of `SalesTaxRateDetail`. """ - salesTaxRateDetails( - filter: QuickbooksSalesTaxRateDetailFilter - orderBy: [QuickbooksSalesTaxRateDetailsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksSalesTaxRateDetailsConnection + salesTaxRateDetails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksSalesTaxRateDetailFilter, """ + The method to use when ordering `SalesTaxRateDetail`. + """ orderBy: [QuickbooksSalesTaxRateDetailsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksSalesTaxRateDetailsConnection """ Reads and enables pagination through a set of `TaxAgency`. """ - taxAgencies( - filter: QuickbooksTaxAgencyFilter - orderBy: [QuickbooksTaxAgenciesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTaxAgenciesConnection + taxAgencies(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTaxAgencyFilter, """ + The method to use when ordering `TaxAgency`. + """ orderBy: [QuickbooksTaxAgenciesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTaxAgenciesConnection """ Reads and enables pagination through a set of `TaxClassification`. """ - taxClassifications( - filter: QuickbooksTaxClassificationFilter - orderBy: [QuickbooksTaxClassificationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTaxClassificationsConnection + taxClassifications(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTaxClassificationFilter, """ + The method to use when ordering `TaxClassification`. + """ orderBy: [QuickbooksTaxClassificationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTaxClassificationsConnection """ Reads and enables pagination through a set of `TaxCode`. """ - taxCodes( - filter: QuickbooksTaxCodeFilter - orderBy: [QuickbooksTaxCodesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTaxCodesConnection + taxCodes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTaxCodeFilter, """ + The method to use when ordering `TaxCode`. + """ orderBy: [QuickbooksTaxCodesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTaxCodesConnection """ Reads and enables pagination through a set of `TaxExemptionReason`. """ - taxExemptionReasons( - filter: QuickbooksTaxExemptionReasonFilter - orderBy: [QuickbooksTaxExemptionReasonsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTaxExemptionReasonsConnection + taxExemptionReasons(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTaxExemptionReasonFilter, """ + The method to use when ordering `TaxExemptionReason`. + """ orderBy: [QuickbooksTaxExemptionReasonsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTaxExemptionReasonsConnection """ Reads and enables pagination through a set of `TaxRate`. """ - taxRates( - filter: QuickbooksTaxRateFilter - orderBy: [QuickbooksTaxRatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTaxRatesConnection + taxRates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTaxRateFilter, """ + The method to use when ordering `TaxRate`. + """ orderBy: [QuickbooksTaxRatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTaxRatesConnection """ Reads and enables pagination through a set of `Term`. """ - terms( - filter: QuickbooksTermFilter - orderBy: [QuickbooksTermsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTermsConnection + terms(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTermFilter, """ + The method to use when ordering `Term`. + """ orderBy: [QuickbooksTermsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTermsConnection """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities( - filter: QuickbooksTimeActivityFilter - orderBy: [QuickbooksTimeActivitiesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTimeActivitiesConnection + timeActivities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTimeActivityFilter, """ + The method to use when ordering `TimeActivity`. + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTimeActivitiesConnection """ Reads and enables pagination through a set of `Transfer`. """ - transfers( - filter: QuickbooksTransferFilter - orderBy: [QuickbooksTransfersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTransfersConnection + transfers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTransferFilter, """ + The method to use when ordering `Transfer`. + """ orderBy: [QuickbooksTransfersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTransfersConnection """ Reads and enables pagination through a set of `Uqc`. """ - uqcs( - filter: QuickbooksUqcFilter - orderBy: [QuickbooksUqcsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksUqcsConnection + uqcs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksUqcFilter, """ + The method to use when ordering `Uqc`. + """ orderBy: [QuickbooksUqcsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksUqcsConnection """ Reads and enables pagination through a set of `Vendor`. """ - vendors( - filter: QuickbooksVendorFilter - orderBy: [QuickbooksVendorsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksVendorsConnection + vendors(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksVendorFilter, """ + The method to use when ordering `Vendor`. + """ orderBy: [QuickbooksVendorsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksVendorsConnection """ """ @@ -101199,131 +104997,195 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ Reads a single `Account` using its globally unique `ID`. """ - account(nodeId: ID!): QuickbooksAccount + account(""" + The globally unique `ID` to be used in selecting a single `Account`. + """ nodeId: ID!): QuickbooksAccount """ Reads a single `Bill` using its globally unique `ID`. """ - bill(nodeId: ID!): QuickbooksBill + bill(""" + The globally unique `ID` to be used in selecting a single `Bill`. + """ nodeId: ID!): QuickbooksBill """ Reads a single `BillPayment` using its globally unique `ID`. """ - billPayment(nodeId: ID!): QuickbooksBillPayment + billPayment(""" + The globally unique `ID` to be used in selecting a single `BillPayment`. + """ nodeId: ID!): QuickbooksBillPayment """ Reads a single `Class` using its globally unique `ID`. """ - class(nodeId: ID!): QuickbooksClass + class(""" + The globally unique `ID` to be used in selecting a single `Class`. + """ nodeId: ID!): QuickbooksClass """ Reads a single `CompanyInfo` using its globally unique `ID`. """ - companyInfo(nodeId: ID!): QuickbooksCompanyInfo + companyInfo(""" + The globally unique `ID` to be used in selecting a single `CompanyInfo`. + """ nodeId: ID!): QuickbooksCompanyInfo """ Reads a single `CreditMemo` using its globally unique `ID`. """ - creditMemo(nodeId: ID!): QuickbooksCreditMemo + creditMemo(""" + The globally unique `ID` to be used in selecting a single `CreditMemo`. + """ nodeId: ID!): QuickbooksCreditMemo """ Reads a single `Currency` using its globally unique `ID`. """ - currency(nodeId: ID!): QuickbooksCurrency + currency(""" + The globally unique `ID` to be used in selecting a single `Currency`. + """ nodeId: ID!): QuickbooksCurrency """ Reads a single `Customer` using its globally unique `ID`. """ - customer(nodeId: ID!): QuickbooksCustomer + customer(""" + The globally unique `ID` to be used in selecting a single `Customer`. + """ nodeId: ID!): QuickbooksCustomer """ Reads a single `Department` using its globally unique `ID`. """ - department(nodeId: ID!): QuickbooksDepartment + department(""" + The globally unique `ID` to be used in selecting a single `Department`. + """ nodeId: ID!): QuickbooksDepartment """ Reads a single `Deposit` using its globally unique `ID`. """ - deposit(nodeId: ID!): QuickbooksDeposit + deposit(""" + The globally unique `ID` to be used in selecting a single `Deposit`. + """ nodeId: ID!): QuickbooksDeposit """ Reads a single `Employee` using its globally unique `ID`. """ - employee(nodeId: ID!): QuickbooksEmployee + employee(""" + The globally unique `ID` to be used in selecting a single `Employee`. + """ nodeId: ID!): QuickbooksEmployee """ Reads a single `Estimate` using its globally unique `ID`. """ - estimate(nodeId: ID!): QuickbooksEstimate + estimate(""" + The globally unique `ID` to be used in selecting a single `Estimate`. + """ nodeId: ID!): QuickbooksEstimate """ Reads a single `Invoice` using its globally unique `ID`. """ - invoice(nodeId: ID!): QuickbooksInvoice + invoice(""" + The globally unique `ID` to be used in selecting a single `Invoice`. + """ nodeId: ID!): QuickbooksInvoice """ Reads a single `Item` using its globally unique `ID`. """ - item(nodeId: ID!): QuickbooksItem + item(""" + The globally unique `ID` to be used in selecting a single `Item`. + """ nodeId: ID!): QuickbooksItem """ Reads a single `JournalCode` using its globally unique `ID`. """ - journalCode(nodeId: ID!): QuickbooksJournalCode + journalCode(""" + The globally unique `ID` to be used in selecting a single `JournalCode`. + """ nodeId: ID!): QuickbooksJournalCode """ Reads a single `JournalEntry` using its globally unique `ID`. """ - journalEntry(nodeId: ID!): QuickbooksJournalEntry + journalEntry(""" + The globally unique `ID` to be used in selecting a single `JournalEntry`. + """ nodeId: ID!): QuickbooksJournalEntry """ Reads a single `Payment` using its globally unique `ID`. """ - payment(nodeId: ID!): QuickbooksPayment + payment(""" + The globally unique `ID` to be used in selecting a single `Payment`. + """ nodeId: ID!): QuickbooksPayment """ Reads a single `PaymentMethod` using its globally unique `ID`. """ - paymentMethod(nodeId: ID!): QuickbooksPaymentMethod + paymentMethod(""" + The globally unique `ID` to be used in selecting a single `PaymentMethod`. + """ nodeId: ID!): QuickbooksPaymentMethod """ Reads a single `PhysicalAddress` using its globally unique `ID`. """ - physicalAddress(nodeId: ID!): QuickbooksPhysicalAddress + physicalAddress(""" + The globally unique `ID` to be used in selecting a single `PhysicalAddress`. + """ nodeId: ID!): QuickbooksPhysicalAddress """ Reads a single `Purchase` using its globally unique `ID`. """ - purchase(nodeId: ID!): QuickbooksPurchase + purchase(""" + The globally unique `ID` to be used in selecting a single `Purchase`. + """ nodeId: ID!): QuickbooksPurchase """ Reads a single `RefundReceipt` using its globally unique `ID`. """ - refundReceipt(nodeId: ID!): QuickbooksRefundReceipt + refundReceipt(""" + The globally unique `ID` to be used in selecting a single `RefundReceipt`. + """ nodeId: ID!): QuickbooksRefundReceipt """ Reads a single `SalesReceipt` using its globally unique `ID`. """ - salesReceipt(nodeId: ID!): QuickbooksSalesReceipt + salesReceipt(""" + The globally unique `ID` to be used in selecting a single `SalesReceipt`. + """ nodeId: ID!): QuickbooksSalesReceipt """ Reads a single `TaxAgency` using its globally unique `ID`. """ - taxAgency(nodeId: ID!): QuickbooksTaxAgency + taxAgency(""" + The globally unique `ID` to be used in selecting a single `TaxAgency`. + """ nodeId: ID!): QuickbooksTaxAgency """ Reads a single `TaxClassification` using its globally unique `ID`. """ - taxClassification(nodeId: ID!): QuickbooksTaxClassification + taxClassification(""" + The globally unique `ID` to be used in selecting a single `TaxClassification`. + """ nodeId: ID!): QuickbooksTaxClassification """ Reads a single `TaxCode` using its globally unique `ID`. """ - taxCode(nodeId: ID!): QuickbooksTaxCode + taxCode(""" + The globally unique `ID` to be used in selecting a single `TaxCode`. + """ nodeId: ID!): QuickbooksTaxCode """ Reads a single `TaxExemptionReason` using its globally unique `ID`. """ - taxExemptionReason(nodeId: ID!): QuickbooksTaxExemptionReason + taxExemptionReason(""" + The globally unique `ID` to be used in selecting a single `TaxExemptionReason`. + """ nodeId: ID!): QuickbooksTaxExemptionReason """ Reads a single `TaxRate` using its globally unique `ID`. """ - taxRate(nodeId: ID!): QuickbooksTaxRate + taxRate(""" + The globally unique `ID` to be used in selecting a single `TaxRate`. + """ nodeId: ID!): QuickbooksTaxRate """ Reads a single `Term` using its globally unique `ID`. """ - term(nodeId: ID!): QuickbooksTerm + term(""" + The globally unique `ID` to be used in selecting a single `Term`. + """ nodeId: ID!): QuickbooksTerm """ Reads a single `TimeActivity` using its globally unique `ID`. """ - timeActivity(nodeId: ID!): QuickbooksTimeActivity + timeActivity(""" + The globally unique `ID` to be used in selecting a single `TimeActivity`. + """ nodeId: ID!): QuickbooksTimeActivity """ Reads a single `Transfer` using its globally unique `ID`. """ - transfer(nodeId: ID!): QuickbooksTransfer + transfer(""" + The globally unique `ID` to be used in selecting a single `Transfer`. + """ nodeId: ID!): QuickbooksTransfer """ Reads a single `Uqc` using its globally unique `ID`. """ - uqc(nodeId: ID!): QuickbooksUqc + uqc(""" + The globally unique `ID` to be used in selecting a single `Uqc`. + """ nodeId: ID!): QuickbooksUqc """ Reads a single `Vendor` using its globally unique `ID`. """ - vendor(nodeId: ID!): QuickbooksVendor + vendor(""" + The globally unique `ID` to be used in selecting a single `Vendor`. + """ nodeId: ID!): QuickbooksVendor """ """ @@ -101448,7 +105310,9 @@ type QuickbooksQuery implements OneGraphNode & QuickbooksNode { """ realm(realmId: String): QuickbooksRealm - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -101478,16 +105342,24 @@ type QuickbooksUqc implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Item`. """ - items( - filter: QuickbooksItemFilter - orderBy: [QuickbooksItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksItemsConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + items(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksItemFilter, """ + The method to use when ordering `Item`. + """ orderBy: [QuickbooksItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksItemsConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -103150,7 +107022,9 @@ type QuickbooksJournalCode implements OneGraphNode & QuickbooksNode { """ lastUpdatedTime: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -108409,28 +112283,42 @@ type QuickbooksRefundReceipt implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `RefundReceiptLineItem`. """ - lineItems( - filter: QuickbooksRefundReceiptLineItemFilter - orderBy: [QuickbooksRefundReceiptLineItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksRefundReceiptLineItemsConnection! + lineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksRefundReceiptLineItemFilter, """ + The method to use when ordering `RefundReceiptLineItem`. + """ orderBy: [QuickbooksRefundReceiptLineItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksRefundReceiptLineItemsConnection! """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines( - filter: QuickbooksTransactionTaxDetailLineFilter - orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTransactionTaxDetailLinesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + transactionTaxDetailLines(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ + The method to use when ordering `TransactionTaxDetailLine`. + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -109242,28 +113130,42 @@ type QuickbooksSalesReceipt implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `SalesReceiptLineItem`. """ - lineItems( - filter: QuickbooksSalesReceiptLineItemFilter - orderBy: [QuickbooksSalesReceiptLineItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksSalesReceiptLineItemsConnection! + lineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksSalesReceiptLineItemFilter, """ + The method to use when ordering `SalesReceiptLineItem`. + """ orderBy: [QuickbooksSalesReceiptLineItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksSalesReceiptLineItemsConnection! """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines( - filter: QuickbooksTransactionTaxDetailLineFilter - orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTransactionTaxDetailLinesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + transactionTaxDetailLines(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ + The method to use when ordering `TransactionTaxDetailLine`. + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -110312,28 +114214,42 @@ type QuickbooksPurchase implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `PaymentLineItemTransaction`. """ - paymentLineItemTransactions( - filter: QuickbooksPaymentLineItemTransactionFilter - orderBy: [QuickbooksPaymentLineItemTransactionsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPaymentLineItemTransactionsConnection! + paymentLineItemTransactions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPaymentLineItemTransactionFilter, """ + The method to use when ordering `PaymentLineItemTransaction`. + """ orderBy: [QuickbooksPaymentLineItemTransactionsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPaymentLineItemTransactionsConnection! """ Reads and enables pagination through a set of `PurchaseLineItem`. """ - lineItems( - filter: QuickbooksPurchaseLineItemFilter - orderBy: [QuickbooksPurchaseLineItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPurchaseLineItemsConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + lineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPurchaseLineItemFilter, """ + The method to use when ordering `PurchaseLineItem`. + """ orderBy: [QuickbooksPurchaseLineItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPurchaseLineItemsConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -110535,16 +114451,24 @@ type QuickbooksJournalEntry implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines( - filter: QuickbooksTransactionTaxDetailLineFilter - orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTransactionTaxDetailLinesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + transactionTaxDetailLines(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ + The method to use when ordering `TransactionTaxDetailLine`. + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -110669,15 +114593,21 @@ type QuickbooksPaymentLineItem { """ Reads and enables pagination through a set of `PaymentLineItemTransaction`. """ - linkedTransactions( - filter: QuickbooksPaymentLineItemTransactionFilter - orderBy: [QuickbooksPaymentLineItemTransactionsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPaymentLineItemTransactionsConnection! + linkedTransactions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPaymentLineItemTransactionFilter, """ + The method to use when ordering `PaymentLineItemTransaction`. + """ orderBy: [QuickbooksPaymentLineItemTransactionsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPaymentLineItemTransactionsConnection! } """ @@ -110904,16 +114834,24 @@ type QuickbooksPayment implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `PaymentLineItem`. """ - lineItems( - filter: QuickbooksPaymentLineItemFilter - orderBy: [QuickbooksPaymentLineItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPaymentLineItemsConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + lineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPaymentLineItemFilter, """ + The method to use when ordering `PaymentLineItem`. + """ orderBy: [QuickbooksPaymentLineItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPaymentLineItemsConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -110980,7 +114918,9 @@ type QuickbooksTransfer implements OneGraphNode & QuickbooksNode { Reads a single `Account` that is related to this `Transfer`. """ fromAccount: QuickbooksAccount - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -111234,15 +115174,21 @@ type QuickbooksDepositLineItem { """ Reads and enables pagination through a set of `DepositLineItemTransaction`. """ - linkedTransactions( - filter: QuickbooksDepositLineItemTransactionFilter - orderBy: [QuickbooksDepositLineItemTransactionsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksDepositLineItemTransactionsConnection! + linkedTransactions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksDepositLineItemTransactionFilter, """ + The method to use when ordering `DepositLineItemTransaction`. + """ orderBy: [QuickbooksDepositLineItemTransactionsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksDepositLineItemTransactionsConnection! } """ @@ -111396,28 +115342,42 @@ type QuickbooksDeposit implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `DepositLineItem`. """ - lineItems( - filter: QuickbooksDepositLineItemFilter - orderBy: [QuickbooksDepositLineItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksDepositLineItemsConnection! + lineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksDepositLineItemFilter, """ + The method to use when ordering `DepositLineItem`. + """ orderBy: [QuickbooksDepositLineItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksDepositLineItemsConnection! """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines( - filter: QuickbooksTransactionTaxDetailLineFilter - orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTransactionTaxDetailLinesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + transactionTaxDetailLines(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ + The method to use when ordering `TransactionTaxDetailLine`. + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -111729,16 +115689,24 @@ type QuickbooksTaxAgency implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `TaxRate`. """ - taxRates( - filter: QuickbooksTaxRateFilter - orderBy: [QuickbooksTaxRatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTaxRatesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + taxRates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTaxRateFilter, """ + The method to use when ordering `TaxRate`. + """ orderBy: [QuickbooksTaxRatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTaxRatesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -111834,7 +115802,9 @@ type QuickbooksTaxRate implements OneGraphNode & QuickbooksNode { Reads a single `TaxAgency` that is related to this `TaxRate`. """ taxAgency: QuickbooksTaxAgency - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -112750,28 +116720,42 @@ type QuickbooksCreditMemo implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `CreditMemoLineItem`. """ - lineItems( - filter: QuickbooksCreditMemoLineItemFilter - orderBy: [QuickbooksCreditMemoLineItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCreditMemoLineItemsConnection! + lineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCreditMemoLineItemFilter, """ + The method to use when ordering `CreditMemoLineItem`. + """ orderBy: [QuickbooksCreditMemoLineItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCreditMemoLineItemsConnection! """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines( - filter: QuickbooksTransactionTaxDetailLineFilter - orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTransactionTaxDetailLinesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + transactionTaxDetailLines(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ + The method to use when ordering `TransactionTaxDetailLine`. + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -112852,76 +116836,114 @@ type QuickbooksPaymentMethod implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Customer`. """ - customers( - filter: QuickbooksCustomerFilter - orderBy: [QuickbooksCustomersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCustomersConnection! + customers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCustomerFilter, """ + The method to use when ordering `Customer`. + """ orderBy: [QuickbooksCustomersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos( - filter: QuickbooksCreditMemoFilter - orderBy: [QuickbooksCreditMemosOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCreditMemosConnection! + creditMemos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCreditMemoFilter, """ + The method to use when ordering `CreditMemo`. + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `Payment`. """ - payments( - filter: QuickbooksPaymentFilter - orderBy: [QuickbooksPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPaymentsConnection! + payments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPaymentFilter, """ + The method to use when ordering `Payment`. + """ orderBy: [QuickbooksPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPaymentsConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts( - filter: QuickbooksRefundReceiptFilter - orderBy: [QuickbooksRefundReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksRefundReceiptsConnection! + refundReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksRefundReceiptFilter, """ + The method to use when ordering `RefundReceipt`. + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts( - filter: QuickbooksSalesReceiptFilter - orderBy: [QuickbooksSalesReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksSalesReceiptsConnection! + salesReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksSalesReceiptFilter, """ + The method to use when ordering `SalesReceipt`. + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchases( - filter: QuickbooksPurchaseFilter - orderBy: [QuickbooksPurchasesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPurchasesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + purchases(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPurchaseFilter, """ + The method to use when ordering `Purchase`. + """ orderBy: [QuickbooksPurchasesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPurchasesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -113157,375 +117179,561 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `PhysicalAddress`. """ - physicalAddresses( - filter: QuickbooksPhysicalAddressFilter - orderBy: [QuickbooksPhysicalAddressesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPhysicalAddressesConnection! + physicalAddresses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPhysicalAddressFilter, """ + The method to use when ordering `PhysicalAddress`. + """ orderBy: [QuickbooksPhysicalAddressesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPhysicalAddressesConnection! """ Reads and enables pagination through a set of `PaymentMethod`. """ - paymentMethods( - filter: QuickbooksPaymentMethodFilter - orderBy: [QuickbooksPaymentMethodsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPaymentMethodsConnection! + paymentMethods(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPaymentMethodFilter, """ + The method to use when ordering `PaymentMethod`. + """ orderBy: [QuickbooksPaymentMethodsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPaymentMethodsConnection! """ Reads and enables pagination through a set of `Term`. """ - terms( - filter: QuickbooksTermFilter - orderBy: [QuickbooksTermsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTermsConnection! + terms(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTermFilter, """ + The method to use when ordering `Term`. + """ orderBy: [QuickbooksTermsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTermsConnection! """ Reads and enables pagination through a set of `TaxClassification`. """ - taxClassifications( - filter: QuickbooksTaxClassificationFilter - orderBy: [QuickbooksTaxClassificationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTaxClassificationsConnection! + taxClassifications(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTaxClassificationFilter, """ + The method to use when ordering `TaxClassification`. + """ orderBy: [QuickbooksTaxClassificationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTaxClassificationsConnection! """ Reads and enables pagination through a set of `TaxCode`. """ - taxCodes( - filter: QuickbooksTaxCodeFilter - orderBy: [QuickbooksTaxCodesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTaxCodesConnection! + taxCodes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTaxCodeFilter, """ + The method to use when ordering `TaxCode`. + """ orderBy: [QuickbooksTaxCodesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTaxCodesConnection! """ Reads and enables pagination through a set of `TaxAgency`. """ - taxAgencies( - filter: QuickbooksTaxAgencyFilter - orderBy: [QuickbooksTaxAgenciesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTaxAgenciesConnection! + taxAgencies(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTaxAgencyFilter, """ + The method to use when ordering `TaxAgency`. + """ orderBy: [QuickbooksTaxAgenciesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTaxAgenciesConnection! """ Reads and enables pagination through a set of `TaxRate`. """ - taxRates( - filter: QuickbooksTaxRateFilter - orderBy: [QuickbooksTaxRatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTaxRatesConnection! + taxRates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTaxRateFilter, """ + The method to use when ordering `TaxRate`. + """ orderBy: [QuickbooksTaxRatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTaxRatesConnection! """ Reads and enables pagination through a set of `PurchaseTaxRateDetail`. """ - purchaseTaxRateDetails( - filter: QuickbooksPurchaseTaxRateDetailFilter - orderBy: [QuickbooksPurchaseTaxRateDetailsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPurchaseTaxRateDetailsConnection! + purchaseTaxRateDetails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPurchaseTaxRateDetailFilter, """ + The method to use when ordering `PurchaseTaxRateDetail`. + """ orderBy: [QuickbooksPurchaseTaxRateDetailsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPurchaseTaxRateDetailsConnection! """ Reads and enables pagination through a set of `Class`. """ - classes( - filter: QuickbooksClassFilter - orderBy: [QuickbooksClassesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksClassesConnection! + classes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksClassFilter, """ + The method to use when ordering `Class`. + """ orderBy: [QuickbooksClassesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksClassesConnection! """ Reads and enables pagination through a set of `Employee`. """ - employees( - filter: QuickbooksEmployeeFilter - orderBy: [QuickbooksEmployeesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEmployeesConnection! + employees(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEmployeeFilter, """ + The method to use when ordering `Employee`. + """ orderBy: [QuickbooksEmployeesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEmployeesConnection! """ Reads and enables pagination through a set of `Vendor`. """ - vendors( - filter: QuickbooksVendorFilter - orderBy: [QuickbooksVendorsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksVendorsConnection! + vendors(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksVendorFilter, """ + The method to use when ordering `Vendor`. + """ orderBy: [QuickbooksVendorsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksVendorsConnection! """ Reads and enables pagination through a set of `Department`. """ - departments( - filter: QuickbooksDepartmentFilter - orderBy: [QuickbooksDepartmentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksDepartmentsConnection! + departments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksDepartmentFilter, """ + The method to use when ordering `Department`. + """ orderBy: [QuickbooksDepartmentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksDepartmentsConnection! """ Reads and enables pagination through a set of `Customer`. """ - customers( - filter: QuickbooksCustomerFilter - orderBy: [QuickbooksCustomersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCustomersConnection! + customers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCustomerFilter, """ + The method to use when ordering `Customer`. + """ orderBy: [QuickbooksCustomersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Item`. """ - items( - filter: QuickbooksItemFilter - orderBy: [QuickbooksItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksItemsConnection! + items(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksItemFilter, """ + The method to use when ordering `Item`. + """ orderBy: [QuickbooksItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `Bill`. """ - bills( - filter: QuickbooksBillFilter - orderBy: [QuickbooksBillsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillsConnection! + bills(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillFilter, """ + The method to use when ordering `Bill`. + """ orderBy: [QuickbooksBillsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillsConnection! """ Reads and enables pagination through a set of `BillPayment`. """ - billPayments( - filter: QuickbooksBillPaymentFilter - orderBy: [QuickbooksBillPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillPaymentsConnection! + billPayments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillPaymentFilter, """ + The method to use when ordering `BillPayment`. + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillPaymentsConnection! """ Reads and enables pagination through a set of `Invoice`. """ - realmInvoices( - filter: QuickbooksInvoiceFilter - orderBy: [QuickbooksInvoicesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoicesConnection! + realmInvoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceFilter, """ + The method to use when ordering `Invoice`. + """ orderBy: [QuickbooksInvoicesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - realmEstimates( - filter: QuickbooksEstimateFilter - orderBy: [QuickbooksEstimatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEstimatesConnection! + realmEstimates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEstimateFilter, """ + The method to use when ordering `Estimate`. + """ orderBy: [QuickbooksEstimatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos( - filter: QuickbooksCreditMemoFilter - orderBy: [QuickbooksCreditMemosOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCreditMemosConnection! + creditMemos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCreditMemoFilter, """ + The method to use when ordering `CreditMemo`. + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `Payment`. """ - payments( - filter: QuickbooksPaymentFilter - orderBy: [QuickbooksPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPaymentsConnection! + payments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPaymentFilter, """ + The method to use when ordering `Payment`. + """ orderBy: [QuickbooksPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPaymentsConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts( - filter: QuickbooksRefundReceiptFilter - orderBy: [QuickbooksRefundReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksRefundReceiptsConnection! + refundReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksRefundReceiptFilter, """ + The method to use when ordering `RefundReceipt`. + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts( - filter: QuickbooksSalesReceiptFilter - orderBy: [QuickbooksSalesReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksSalesReceiptsConnection! + salesReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksSalesReceiptFilter, """ + The method to use when ordering `SalesReceipt`. + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `JournalCode`. """ - journalCodes( - filter: QuickbooksJournalCodeFilter - orderBy: [QuickbooksJournalCodesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksJournalCodesConnection! + journalCodes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksJournalCodeFilter, """ + The method to use when ordering `JournalCode`. + """ orderBy: [QuickbooksJournalCodesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksJournalCodesConnection! """ Reads and enables pagination through a set of `JournalEntry`. """ - journalEntries( - filter: QuickbooksJournalEntryFilter - orderBy: [QuickbooksJournalEntriesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksJournalEntriesConnection! + journalEntries(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksJournalEntryFilter, """ + The method to use when ordering `JournalEntry`. + """ orderBy: [QuickbooksJournalEntriesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksJournalEntriesConnection! """ Reads and enables pagination through a set of `Transfer`. """ - transfers( - filter: QuickbooksTransferFilter - orderBy: [QuickbooksTransfersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTransfersConnection! + transfers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTransferFilter, """ + The method to use when ordering `Transfer`. + """ orderBy: [QuickbooksTransfersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTransfersConnection! """ Reads and enables pagination through a set of `Deposit`. """ - deposits( - filter: QuickbooksDepositFilter - orderBy: [QuickbooksDepositsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksDepositsConnection! + deposits(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksDepositFilter, """ + The method to use when ordering `Deposit`. + """ orderBy: [QuickbooksDepositsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksDepositsConnection! """ Reads and enables pagination through a set of `PaymentLineItem`. """ - paymentLineItems( - filter: QuickbooksPaymentLineItemFilter - orderBy: [QuickbooksPaymentLineItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPaymentLineItemsConnection! + paymentLineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPaymentLineItemFilter, """ + The method to use when ordering `PaymentLineItem`. + """ orderBy: [QuickbooksPaymentLineItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPaymentLineItemsConnection! """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines( - filter: QuickbooksTransactionTaxDetailLineFilter - orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTransactionTaxDetailLinesConnection! + transactionTaxDetailLines(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ + The method to use when ordering `TransactionTaxDetailLine`. + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities( - filter: QuickbooksTimeActivityFilter - orderBy: [QuickbooksTimeActivitiesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTimeActivitiesConnection! + timeActivities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTimeActivityFilter, """ + The method to use when ordering `TimeActivity`. + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTimeActivitiesConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchases( - filter: QuickbooksPurchaseFilter - orderBy: [QuickbooksPurchasesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPurchasesConnection! + purchases(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPurchaseFilter, """ + The method to use when ordering `Purchase`. + """ orderBy: [QuickbooksPurchasesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPurchasesConnection! """ Reads and enables pagination through a set of `PurchaseLineItem`. """ - purchaseLineItems( - filter: QuickbooksPurchaseLineItemFilter - orderBy: [QuickbooksPurchaseLineItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPurchaseLineItemsConnection! + purchaseLineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPurchaseLineItemFilter, """ + The method to use when ordering `PurchaseLineItem`. + """ orderBy: [QuickbooksPurchaseLineItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPurchaseLineItemsConnection! """ Reads a single `CompanyInfo` that is related to this `Realm`. """ @@ -113533,41 +117741,61 @@ type QuickbooksRealm implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `CompanyInfo`. """ - companyInfos( - filter: QuickbooksCompanyInfoFilter - orderBy: [QuickbooksCompanyInfosOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCompanyInfosConnection! + companyInfos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCompanyInfoFilter, """ + The method to use when ordering `CompanyInfo`. + """ orderBy: [QuickbooksCompanyInfosOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCompanyInfosConnection! @deprecated(reason: "Please use companyInfo instead") """ Reads and enables pagination through a set of `Invoice`. """ - invoices( - filter: QuickbooksInvoiceFilter - orderBy: [QuickbooksInvoicesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoicesConnection! + invoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceFilter, """ + The method to use when ordering `Invoice`. + """ orderBy: [QuickbooksInvoicesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimates( - filter: QuickbooksEstimateFilter - orderBy: [QuickbooksEstimatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEstimatesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + estimates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEstimateFilter, """ + The method to use when ordering `Estimate`. + """ orderBy: [QuickbooksEstimatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEstimatesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -113747,7 +117975,9 @@ type QuickbooksCompanyInfo implements OneGraphNode & QuickbooksNode { Reads a single `PhysicalAddress` that is related to this `CompanyInfo`. """ customerCommunicationAddress: QuickbooksPhysicalAddress - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -114451,28 +118681,42 @@ type QuickbooksTaxClassification implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `TaxClassification`. """ - subTaxClassifications( - filter: QuickbooksTaxClassificationFilter - orderBy: [QuickbooksTaxClassificationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTaxClassificationsConnection! + subTaxClassifications(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTaxClassificationFilter, """ + The method to use when ordering `TaxClassification`. + """ orderBy: [QuickbooksTaxClassificationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTaxClassificationsConnection! """ Reads and enables pagination through a set of `Item`. """ - items( - filter: QuickbooksItemFilter - orderBy: [QuickbooksItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksItemsConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + items(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksItemFilter, """ + The method to use when ordering `Item`. + """ orderBy: [QuickbooksItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksItemsConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -114857,40 +119101,60 @@ type QuickbooksEstimate implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `EstimateLineItem`. """ - lineItems( - filter: QuickbooksEstimateLineItemFilter - orderBy: [QuickbooksEstimateLineItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEstimateLineItemsConnection! + lineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEstimateLineItemFilter, """ + The method to use when ordering `EstimateLineItem`. + """ orderBy: [QuickbooksEstimateLineItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEstimateLineItemsConnection! """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines( - filter: QuickbooksTransactionTaxDetailLineFilter - orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTransactionTaxDetailLinesConnection! + transactionTaxDetailLines(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ + The method to use when ordering `TransactionTaxDetailLine`. + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoices( - filter: QuickbooksInvoiceFilter - orderBy: [QuickbooksInvoicesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoicesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + invoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceFilter, """ + The method to use when ordering `Invoice`. + """ orderBy: [QuickbooksInvoicesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoicesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -115630,88 +119894,132 @@ type QuickbooksClass implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Class`. """ - subClasses( - filter: QuickbooksClassFilter - orderBy: [QuickbooksClassesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksClassesConnection! + subClasses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksClassFilter, """ + The method to use when ordering `Class`. + """ orderBy: [QuickbooksClassesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksClassesConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoices( - filter: QuickbooksInvoiceFilter - orderBy: [QuickbooksInvoicesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoicesConnection! + invoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceFilter, """ + The method to use when ordering `Invoice`. + """ orderBy: [QuickbooksInvoicesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimates( - filter: QuickbooksEstimateFilter - orderBy: [QuickbooksEstimatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEstimatesConnection! + estimates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEstimateFilter, """ + The method to use when ordering `Estimate`. + """ orderBy: [QuickbooksEstimatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos( - filter: QuickbooksCreditMemoFilter - orderBy: [QuickbooksCreditMemosOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCreditMemosConnection! + creditMemos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCreditMemoFilter, """ + The method to use when ordering `CreditMemo`. + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts( - filter: QuickbooksRefundReceiptFilter - orderBy: [QuickbooksRefundReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksRefundReceiptsConnection! + refundReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksRefundReceiptFilter, """ + The method to use when ordering `RefundReceipt`. + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts( - filter: QuickbooksSalesReceiptFilter - orderBy: [QuickbooksSalesReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksSalesReceiptsConnection! + salesReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksSalesReceiptFilter, """ + The method to use when ordering `SalesReceipt`. + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities( - filter: QuickbooksTimeActivityFilter - orderBy: [QuickbooksTimeActivitiesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTimeActivitiesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + timeActivities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTimeActivityFilter, """ + The method to use when ordering `TimeActivity`. + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTimeActivitiesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -115851,7 +120159,9 @@ type QuickbooksTimeActivity implements OneGraphNode & QuickbooksNode { Reads a single `Department` that is related to this `TimeActivity`. """ department: QuickbooksDepartment - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -116007,28 +120317,42 @@ type QuickbooksEmployee implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities( - filter: QuickbooksTimeActivityFilter - orderBy: [QuickbooksTimeActivitiesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTimeActivitiesConnection! + timeActivities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTimeActivityFilter, """ + The method to use when ordering `TimeActivity`. + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTimeActivitiesConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchases( - filter: QuickbooksPurchaseFilter - orderBy: [QuickbooksPurchasesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPurchasesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + purchases(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPurchaseFilter, """ + The method to use when ordering `Purchase`. + """ orderBy: [QuickbooksPurchasesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPurchasesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -116124,220 +120448,330 @@ type QuickbooksPhysicalAddress implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Employee`. """ - employees( - filter: QuickbooksEmployeeFilter - orderBy: [QuickbooksEmployeesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEmployeesConnection! + employees(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEmployeeFilter, """ + The method to use when ordering `Employee`. + """ orderBy: [QuickbooksEmployeesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEmployeesConnection! """ Reads and enables pagination through a set of `Vendor`. """ - vendorsByBillingAddress( - filter: QuickbooksVendorFilter - orderBy: [QuickbooksVendorsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksVendorsConnection! + vendorsByBillingAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksVendorFilter, """ + The method to use when ordering `Vendor`. + """ orderBy: [QuickbooksVendorsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksVendorsConnection! """ Reads and enables pagination through a set of `Customer`. """ - customersByShippingAddress( - filter: QuickbooksCustomerFilter - orderBy: [QuickbooksCustomersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCustomersConnection! + customersByShippingAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCustomerFilter, """ + The method to use when ordering `Customer`. + """ orderBy: [QuickbooksCustomersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Customer`. """ - customersByBillingAddress( - filter: QuickbooksCustomerFilter - orderBy: [QuickbooksCustomersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCustomersConnection! + customersByBillingAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCustomerFilter, """ + The method to use when ordering `Customer`. + """ orderBy: [QuickbooksCustomersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoicesByShipFromAddress( - filter: QuickbooksInvoiceFilter - orderBy: [QuickbooksInvoicesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoicesConnection! + invoicesByShipFromAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceFilter, """ + The method to use when ordering `Invoice`. + """ orderBy: [QuickbooksInvoicesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoicesByShippingAddress( - filter: QuickbooksInvoiceFilter - orderBy: [QuickbooksInvoicesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoicesConnection! + invoicesByShippingAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceFilter, """ + The method to use when ordering `Invoice`. + """ orderBy: [QuickbooksInvoicesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoicesByBillingAddress( - filter: QuickbooksInvoiceFilter - orderBy: [QuickbooksInvoicesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoicesConnection! + invoicesByBillingAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceFilter, """ + The method to use when ordering `Invoice`. + """ orderBy: [QuickbooksInvoicesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimatesByShipFromAddress( - filter: QuickbooksEstimateFilter - orderBy: [QuickbooksEstimatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEstimatesConnection! + estimatesByShipFromAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEstimateFilter, """ + The method to use when ordering `Estimate`. + """ orderBy: [QuickbooksEstimatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimatesByShippingAddress( - filter: QuickbooksEstimateFilter - orderBy: [QuickbooksEstimatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEstimatesConnection! + estimatesByShippingAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEstimateFilter, """ + The method to use when ordering `Estimate`. + """ orderBy: [QuickbooksEstimatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimatesByBillingAddress( - filter: QuickbooksEstimateFilter - orderBy: [QuickbooksEstimatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEstimatesConnection! + estimatesByBillingAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEstimateFilter, """ + The method to use when ordering `Estimate`. + """ orderBy: [QuickbooksEstimatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemosByShippingAddress( - filter: QuickbooksCreditMemoFilter - orderBy: [QuickbooksCreditMemosOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCreditMemosConnection! + creditMemosByShippingAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCreditMemoFilter, """ + The method to use when ordering `CreditMemo`. + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemosByBillingAddress( - filter: QuickbooksCreditMemoFilter - orderBy: [QuickbooksCreditMemosOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCreditMemosConnection! + creditMemosByBillingAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCreditMemoFilter, """ + The method to use when ordering `CreditMemo`. + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceiptsByShippingAddress( - filter: QuickbooksRefundReceiptFilter - orderBy: [QuickbooksRefundReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksRefundReceiptsConnection! + refundReceiptsByShippingAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksRefundReceiptFilter, """ + The method to use when ordering `RefundReceipt`. + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceiptsByBillingAddress( - filter: QuickbooksRefundReceiptFilter - orderBy: [QuickbooksRefundReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksRefundReceiptsConnection! + refundReceiptsByBillingAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksRefundReceiptFilter, """ + The method to use when ordering `RefundReceipt`. + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceiptsByShipFromAddress( - filter: QuickbooksSalesReceiptFilter - orderBy: [QuickbooksSalesReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksSalesReceiptsConnection! + salesReceiptsByShipFromAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksSalesReceiptFilter, """ + The method to use when ordering `SalesReceipt`. + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceiptsByShippingAddress( - filter: QuickbooksSalesReceiptFilter - orderBy: [QuickbooksSalesReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksSalesReceiptsConnection! + salesReceiptsByShippingAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksSalesReceiptFilter, """ + The method to use when ordering `SalesReceipt`. + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceiptsByBillingAddress( - filter: QuickbooksSalesReceiptFilter - orderBy: [QuickbooksSalesReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksSalesReceiptsConnection! + salesReceiptsByBillingAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksSalesReceiptFilter, """ + The method to use when ordering `SalesReceipt`. + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchasesByRemitToAddress( - filter: QuickbooksPurchaseFilter - orderBy: [QuickbooksPurchasesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPurchasesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + purchasesByRemitToAddress(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPurchaseFilter, """ + The method to use when ordering `Purchase`. + """ orderBy: [QuickbooksPurchasesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPurchasesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -116589,52 +121023,78 @@ type QuickbooksInvoice implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `InvoiceLineItem`. """ - lineItems( - filter: QuickbooksInvoiceLineItemFilter - orderBy: [QuickbooksInvoiceLineItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoiceLineItemsConnection! + lineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceLineItemFilter, """ + The method to use when ordering `InvoiceLineItem`. + """ orderBy: [QuickbooksInvoiceLineItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoiceLineItemsConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos( - filter: QuickbooksCreditMemoFilter - orderBy: [QuickbooksCreditMemosOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCreditMemosConnection! + creditMemos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCreditMemoFilter, """ + The method to use when ordering `CreditMemo`. + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `TransactionTaxDetailLine`. """ - transactionTaxDetailLines( - filter: QuickbooksTransactionTaxDetailLineFilter - orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTransactionTaxDetailLinesConnection! + transactionTaxDetailLines(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTransactionTaxDetailLineFilter, """ + The method to use when ordering `TransactionTaxDetailLine`. + """ orderBy: [QuickbooksTransactionTaxDetailLinesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTransactionTaxDetailLinesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimates( - filter: QuickbooksEstimateFilter - orderBy: [QuickbooksEstimatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEstimatesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + estimates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEstimateFilter, """ + The method to use when ordering `Estimate`. + """ orderBy: [QuickbooksEstimatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEstimatesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -116930,172 +121390,258 @@ type QuickbooksCurrency implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Account`. """ - accounts( - filter: QuickbooksAccountFilter - orderBy: [QuickbooksAccountsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksAccountsConnection! + accounts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksAccountFilter, """ + The method to use when ordering `Account`. + """ orderBy: [QuickbooksAccountsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksAccountsConnection! """ Reads and enables pagination through a set of `Vendor`. """ - vendors( - filter: QuickbooksVendorFilter - orderBy: [QuickbooksVendorsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksVendorsConnection! + vendors(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksVendorFilter, """ + The method to use when ordering `Vendor`. + """ orderBy: [QuickbooksVendorsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksVendorsConnection! """ Reads and enables pagination through a set of `Customer`. """ - customers( - filter: QuickbooksCustomerFilter - orderBy: [QuickbooksCustomersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCustomersConnection! + customers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCustomerFilter, """ + The method to use when ordering `Customer`. + """ orderBy: [QuickbooksCustomersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Bill`. """ - bills( - filter: QuickbooksBillFilter - orderBy: [QuickbooksBillsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillsConnection! + bills(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillFilter, """ + The method to use when ordering `Bill`. + """ orderBy: [QuickbooksBillsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillsConnection! """ Reads and enables pagination through a set of `BillPayment`. """ - billPayments( - filter: QuickbooksBillPaymentFilter - orderBy: [QuickbooksBillPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillPaymentsConnection! + billPayments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillPaymentFilter, """ + The method to use when ordering `BillPayment`. + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillPaymentsConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoices( - filter: QuickbooksInvoiceFilter - orderBy: [QuickbooksInvoicesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoicesConnection! + invoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceFilter, """ + The method to use when ordering `Invoice`. + """ orderBy: [QuickbooksInvoicesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimates( - filter: QuickbooksEstimateFilter - orderBy: [QuickbooksEstimatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEstimatesConnection! + estimates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEstimateFilter, """ + The method to use when ordering `Estimate`. + """ orderBy: [QuickbooksEstimatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos( - filter: QuickbooksCreditMemoFilter - orderBy: [QuickbooksCreditMemosOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCreditMemosConnection! + creditMemos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCreditMemoFilter, """ + The method to use when ordering `CreditMemo`. + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `Payment`. """ - payments( - filter: QuickbooksPaymentFilter - orderBy: [QuickbooksPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPaymentsConnection! + payments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPaymentFilter, """ + The method to use when ordering `Payment`. + """ orderBy: [QuickbooksPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPaymentsConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts( - filter: QuickbooksRefundReceiptFilter - orderBy: [QuickbooksRefundReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksRefundReceiptsConnection! + refundReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksRefundReceiptFilter, """ + The method to use when ordering `RefundReceipt`. + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts( - filter: QuickbooksSalesReceiptFilter - orderBy: [QuickbooksSalesReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksSalesReceiptsConnection! + salesReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksSalesReceiptFilter, """ + The method to use when ordering `SalesReceipt`. + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `JournalEntry`. """ - journalEntries( - filter: QuickbooksJournalEntryFilter - orderBy: [QuickbooksJournalEntriesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksJournalEntriesConnection! + journalEntries(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksJournalEntryFilter, """ + The method to use when ordering `JournalEntry`. + """ orderBy: [QuickbooksJournalEntriesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksJournalEntriesConnection! """ Reads and enables pagination through a set of `Deposit`. """ - deposits( - filter: QuickbooksDepositFilter - orderBy: [QuickbooksDepositsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksDepositsConnection! + deposits(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksDepositFilter, """ + The method to use when ordering `Deposit`. + """ orderBy: [QuickbooksDepositsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksDepositsConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchases( - filter: QuickbooksPurchaseFilter - orderBy: [QuickbooksPurchasesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPurchasesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + purchases(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPurchaseFilter, """ + The method to use when ordering `Purchase`. + """ orderBy: [QuickbooksPurchasesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPurchasesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -117228,16 +121774,24 @@ type QuickbooksBillPayment implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `BillPaymentLineItem`. """ - lineItems( - filter: QuickbooksBillPaymentLineItemFilter - orderBy: [QuickbooksBillPaymentLineItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillPaymentLineItemsConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + lineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillPaymentLineItemFilter, """ + The method to use when ordering `BillPaymentLineItem`. + """ orderBy: [QuickbooksBillPaymentLineItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillPaymentLineItemsConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -117691,124 +122245,186 @@ type QuickbooksDepartment implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Department`. """ - subDepartments( - filter: QuickbooksDepartmentFilter - orderBy: [QuickbooksDepartmentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksDepartmentsConnection! + subDepartments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksDepartmentFilter, """ + The method to use when ordering `Department`. + """ orderBy: [QuickbooksDepartmentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksDepartmentsConnection! """ Reads and enables pagination through a set of `Bill`. """ - bills( - filter: QuickbooksBillFilter - orderBy: [QuickbooksBillsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillsConnection! + bills(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillFilter, """ + The method to use when ordering `Bill`. + """ orderBy: [QuickbooksBillsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillsConnection! """ Reads and enables pagination through a set of `BillPayment`. """ - billPayments( - filter: QuickbooksBillPaymentFilter - orderBy: [QuickbooksBillPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillPaymentsConnection! + billPayments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillPaymentFilter, """ + The method to use when ordering `BillPayment`. + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillPaymentsConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoices( - filter: QuickbooksInvoiceFilter - orderBy: [QuickbooksInvoicesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoicesConnection! + invoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceFilter, """ + The method to use when ordering `Invoice`. + """ orderBy: [QuickbooksInvoicesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimates( - filter: QuickbooksEstimateFilter - orderBy: [QuickbooksEstimatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEstimatesConnection! + estimates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEstimateFilter, """ + The method to use when ordering `Estimate`. + """ orderBy: [QuickbooksEstimatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos( - filter: QuickbooksCreditMemoFilter - orderBy: [QuickbooksCreditMemosOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCreditMemosConnection! + creditMemos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCreditMemoFilter, """ + The method to use when ordering `CreditMemo`. + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts( - filter: QuickbooksRefundReceiptFilter - orderBy: [QuickbooksRefundReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksRefundReceiptsConnection! + refundReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksRefundReceiptFilter, """ + The method to use when ordering `RefundReceipt`. + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts( - filter: QuickbooksSalesReceiptFilter - orderBy: [QuickbooksSalesReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksSalesReceiptsConnection! + salesReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksSalesReceiptFilter, """ + The method to use when ordering `SalesReceipt`. + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `Deposit`. """ - deposits( - filter: QuickbooksDepositFilter - orderBy: [QuickbooksDepositsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksDepositsConnection! + deposits(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksDepositFilter, """ + The method to use when ordering `Deposit`. + """ orderBy: [QuickbooksDepositsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksDepositsConnection! """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities( - filter: QuickbooksTimeActivityFilter - orderBy: [QuickbooksTimeActivitiesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTimeActivitiesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + timeActivities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTimeActivityFilter, """ + The method to use when ordering `TimeActivity`. + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTimeActivitiesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -117932,16 +122548,24 @@ type QuickbooksBill implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `BillLineItem`. """ - lineItems( - filter: QuickbooksBillLineItemFilter - orderBy: [QuickbooksBillLineItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillLineItemsConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + lineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillLineItemFilter, """ + The method to use when ordering `BillLineItem`. + """ orderBy: [QuickbooksBillLineItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillLineItemsConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -118432,76 +123056,114 @@ type QuickbooksTerm implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Vendor`. """ - vendors( - filter: QuickbooksVendorFilter - orderBy: [QuickbooksVendorsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksVendorsConnection! + vendors(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksVendorFilter, """ + The method to use when ordering `Vendor`. + """ orderBy: [QuickbooksVendorsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksVendorsConnection! """ Reads and enables pagination through a set of `Customer`. """ - customers( - filter: QuickbooksCustomerFilter - orderBy: [QuickbooksCustomersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCustomersConnection! + customers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCustomerFilter, """ + The method to use when ordering `Customer`. + """ orderBy: [QuickbooksCustomersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Bill`. """ - bills( - filter: QuickbooksBillFilter - orderBy: [QuickbooksBillsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillsConnection! + bills(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillFilter, """ + The method to use when ordering `Bill`. + """ orderBy: [QuickbooksBillsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillsConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoicesBySalesTerm( - filter: QuickbooksInvoiceFilter - orderBy: [QuickbooksInvoicesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoicesConnection! + invoicesBySalesTerm(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceFilter, """ + The method to use when ordering `Invoice`. + """ orderBy: [QuickbooksInvoicesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimates( - filter: QuickbooksEstimateFilter - orderBy: [QuickbooksEstimatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEstimatesConnection! + estimates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEstimateFilter, """ + The method to use when ordering `Estimate`. + """ orderBy: [QuickbooksEstimatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos( - filter: QuickbooksCreditMemoFilter - orderBy: [QuickbooksCreditMemosOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCreditMemosConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + creditMemos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCreditMemoFilter, """ + The method to use when ordering `CreditMemo`. + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCreditMemosConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -118672,76 +123334,114 @@ type QuickbooksVendor implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Item`. """ - items( - filter: QuickbooksItemFilter - orderBy: [QuickbooksItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksItemsConnection! + items(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksItemFilter, """ + The method to use when ordering `Item`. + """ orderBy: [QuickbooksItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `Bill`. """ - bills( - filter: QuickbooksBillFilter - orderBy: [QuickbooksBillsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillsConnection! + bills(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillFilter, """ + The method to use when ordering `Bill`. + """ orderBy: [QuickbooksBillsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillsConnection! """ Reads and enables pagination through a set of `BillPayment`. """ - billPayments( - filter: QuickbooksBillPaymentFilter - orderBy: [QuickbooksBillPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillPaymentsConnection! + billPayments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillPaymentFilter, """ + The method to use when ordering `BillPayment`. + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillPaymentsConnection! """ Reads and enables pagination through a set of `DepositLineItem`. """ - depositLineItemsByRealmIdAndVendorId( - filter: QuickbooksDepositLineItemFilter - orderBy: [QuickbooksDepositLineItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksDepositLineItemsConnection! + depositLineItemsByRealmIdAndVendorId(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksDepositLineItemFilter, """ + The method to use when ordering `DepositLineItem`. + """ orderBy: [QuickbooksDepositLineItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksDepositLineItemsConnection! """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities( - filter: QuickbooksTimeActivityFilter - orderBy: [QuickbooksTimeActivitiesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTimeActivitiesConnection! + timeActivities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTimeActivityFilter, """ + The method to use when ordering `TimeActivity`. + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTimeActivitiesConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchases( - filter: QuickbooksPurchaseFilter - orderBy: [QuickbooksPurchasesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPurchasesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + purchases(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPurchaseFilter, """ + The method to use when ordering `Purchase`. + """ orderBy: [QuickbooksPurchasesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPurchasesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -119059,28 +123759,42 @@ type QuickbooksItem implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Item`. """ - subItems( - filter: QuickbooksItemFilter - orderBy: [QuickbooksItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksItemsConnection! + subItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksItemFilter, """ + The method to use when ordering `Item`. + """ orderBy: [QuickbooksItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities( - filter: QuickbooksTimeActivityFilter - orderBy: [QuickbooksTimeActivitiesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTimeActivitiesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + timeActivities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTimeActivityFilter, """ + The method to use when ordering `TimeActivity`. + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTimeActivitiesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -120472,124 +125186,186 @@ type QuickbooksTaxCode implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Account`. """ - accountsUsingTaxCodeAsDefault( - filter: QuickbooksAccountFilter - orderBy: [QuickbooksAccountsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksAccountsConnection! + accountsUsingTaxCodeAsDefault(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksAccountFilter, """ + The method to use when ordering `Account`. + """ orderBy: [QuickbooksAccountsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksAccountsConnection! """ Reads and enables pagination through a set of `Customer`. """ - customers( - filter: QuickbooksCustomerFilter - orderBy: [QuickbooksCustomersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCustomersConnection! + customers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCustomerFilter, """ + The method to use when ordering `Customer`. + """ orderBy: [QuickbooksCustomersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Item`. """ - itemsBySalesTaxCode( - filter: QuickbooksItemFilter - orderBy: [QuickbooksItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksItemsConnection! + itemsBySalesTaxCode(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksItemFilter, """ + The method to use when ordering `Item`. + """ orderBy: [QuickbooksItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `Item`. """ - itemsByPurchaseTaxCode( - filter: QuickbooksItemFilter - orderBy: [QuickbooksItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksItemsConnection! + itemsByPurchaseTaxCode(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksItemFilter, """ + The method to use when ordering `Item`. + """ orderBy: [QuickbooksItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoicesByTransactionTaxCode( - filter: QuickbooksInvoiceFilter - orderBy: [QuickbooksInvoicesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoicesConnection! + invoicesByTransactionTaxCode(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceFilter, """ + The method to use when ordering `Invoice`. + """ orderBy: [QuickbooksInvoicesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimatesByTransactionTaxCode( - filter: QuickbooksEstimateFilter - orderBy: [QuickbooksEstimatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEstimatesConnection! + estimatesByTransactionTaxCode(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEstimateFilter, """ + The method to use when ordering `Estimate`. + """ orderBy: [QuickbooksEstimatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos( - filter: QuickbooksCreditMemoFilter - orderBy: [QuickbooksCreditMemosOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCreditMemosConnection! + creditMemos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCreditMemoFilter, """ + The method to use when ordering `CreditMemo`. + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts( - filter: QuickbooksRefundReceiptFilter - orderBy: [QuickbooksRefundReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksRefundReceiptsConnection! + refundReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksRefundReceiptFilter, """ + The method to use when ordering `RefundReceipt`. + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts( - filter: QuickbooksSalesReceiptFilter - orderBy: [QuickbooksSalesReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksSalesReceiptsConnection! + salesReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksSalesReceiptFilter, """ + The method to use when ordering `SalesReceipt`. + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `JournalEntry`. """ - journalEntries( - filter: QuickbooksJournalEntryFilter - orderBy: [QuickbooksJournalEntriesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksJournalEntriesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + journalEntries(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksJournalEntryFilter, """ + The method to use when ordering `JournalEntry`. + """ orderBy: [QuickbooksJournalEntriesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksJournalEntriesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -121029,244 +125805,366 @@ type QuickbooksAccount implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Account`. """ - subAccounts( - filter: QuickbooksAccountFilter - orderBy: [QuickbooksAccountsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksAccountsConnection! + subAccounts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksAccountFilter, """ + The method to use when ordering `Account`. + """ orderBy: [QuickbooksAccountsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksAccountsConnection! """ Reads and enables pagination through a set of `Vendor`. """ - vendors( - filter: QuickbooksVendorFilter - orderBy: [QuickbooksVendorsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksVendorsConnection! + vendors(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksVendorFilter, """ + The method to use when ordering `Vendor`. + """ orderBy: [QuickbooksVendorsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksVendorsConnection! """ Reads and enables pagination through a set of `Customer`. """ - customers( - filter: QuickbooksCustomerFilter - orderBy: [QuickbooksCustomersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCustomersConnection! + customers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCustomerFilter, """ + The method to use when ordering `Customer`. + """ orderBy: [QuickbooksCustomersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Item`. """ - itemsByAssetAccount( - filter: QuickbooksItemFilter - orderBy: [QuickbooksItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksItemsConnection! + itemsByAssetAccount(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksItemFilter, """ + The method to use when ordering `Item`. + """ orderBy: [QuickbooksItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `Item`. """ - itemsByIncomeAccount( - filter: QuickbooksItemFilter - orderBy: [QuickbooksItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksItemsConnection! + itemsByIncomeAccount(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksItemFilter, """ + The method to use when ordering `Item`. + """ orderBy: [QuickbooksItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `Item`. """ - itemsByExpenseAccount( - filter: QuickbooksItemFilter - orderBy: [QuickbooksItemsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksItemsConnection! + itemsByExpenseAccount(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksItemFilter, """ + The method to use when ordering `Item`. + """ orderBy: [QuickbooksItemsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksItemsConnection! """ Reads and enables pagination through a set of `Bill`. """ - bills( - filter: QuickbooksBillFilter - orderBy: [QuickbooksBillsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillsConnection! + bills(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillFilter, """ + The method to use when ordering `Bill`. + """ orderBy: [QuickbooksBillsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillsConnection! """ Reads and enables pagination through a set of `BillPayment`. """ - billPayments( - filter: QuickbooksBillPaymentFilter - orderBy: [QuickbooksBillPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillPaymentsConnection! + billPayments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillPaymentFilter, """ + The method to use when ordering `BillPayment`. + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillPaymentsConnection! """ Reads and enables pagination through a set of `BillPayment`. """ - billPaymentsByCheckPaymentAccount( - filter: QuickbooksBillPaymentFilter - orderBy: [QuickbooksBillPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillPaymentsConnection! + billPaymentsByCheckPaymentAccount(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillPaymentFilter, """ + The method to use when ordering `BillPayment`. + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillPaymentsConnection! """ Reads and enables pagination through a set of `BillPayment`. """ - billPaymentsByCreditCardPaymentAccount( - filter: QuickbooksBillPaymentFilter - orderBy: [QuickbooksBillPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksBillPaymentsConnection! + billPaymentsByCreditCardPaymentAccount(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksBillPaymentFilter, """ + The method to use when ordering `BillPayment`. + """ orderBy: [QuickbooksBillPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksBillPaymentsConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoicesByDepositToAccount( - filter: QuickbooksInvoiceFilter - orderBy: [QuickbooksInvoicesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoicesConnection! + invoicesByDepositToAccount(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceFilter, """ + The method to use when ordering `Invoice`. + """ orderBy: [QuickbooksInvoicesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Payment`. """ - paymentsByDepositToAccount( - filter: QuickbooksPaymentFilter - orderBy: [QuickbooksPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPaymentsConnection! + paymentsByDepositToAccount(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPaymentFilter, """ + The method to use when ordering `Payment`. + """ orderBy: [QuickbooksPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPaymentsConnection! """ Reads and enables pagination through a set of `Payment`. """ - paymentsByAccountsReceivableAccount( - filter: QuickbooksPaymentFilter - orderBy: [QuickbooksPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPaymentsConnection! + paymentsByAccountsReceivableAccount(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPaymentFilter, """ + The method to use when ordering `Payment`. + """ orderBy: [QuickbooksPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPaymentsConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceiptsByDepositToAccount( - filter: QuickbooksRefundReceiptFilter - orderBy: [QuickbooksRefundReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksRefundReceiptsConnection! + refundReceiptsByDepositToAccount(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksRefundReceiptFilter, """ + The method to use when ordering `RefundReceipt`. + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceiptsByDepositToAccount( - filter: QuickbooksSalesReceiptFilter - orderBy: [QuickbooksSalesReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksSalesReceiptsConnection! + salesReceiptsByDepositToAccount(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksSalesReceiptFilter, """ + The method to use when ordering `SalesReceipt`. + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `Transfer`. """ - transfersByTransferToAccount( - filter: QuickbooksTransferFilter - orderBy: [QuickbooksTransfersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTransfersConnection! + transfersByTransferToAccount(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTransferFilter, """ + The method to use when ordering `Transfer`. + """ orderBy: [QuickbooksTransfersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTransfersConnection! """ Reads and enables pagination through a set of `Transfer`. """ - transfersByTransferfromAccount( - filter: QuickbooksTransferFilter - orderBy: [QuickbooksTransfersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTransfersConnection! + transfersByTransferfromAccount(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTransferFilter, """ + The method to use when ordering `Transfer`. + """ orderBy: [QuickbooksTransfersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTransfersConnection! """ Reads and enables pagination through a set of `Deposit`. """ - depositsByDepositTo( - filter: QuickbooksDepositFilter - orderBy: [QuickbooksDepositsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksDepositsConnection! + depositsByDepositTo(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksDepositFilter, """ + The method to use when ordering `Deposit`. + """ orderBy: [QuickbooksDepositsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksDepositsConnection! """ Reads and enables pagination through a set of `Deposit`. """ - depositsByCashBack( - filter: QuickbooksDepositFilter - orderBy: [QuickbooksDepositsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksDepositsConnection! + depositsByCashBack(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksDepositFilter, """ + The method to use when ordering `Deposit`. + """ orderBy: [QuickbooksDepositsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksDepositsConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchases( - filter: QuickbooksPurchaseFilter - orderBy: [QuickbooksPurchasesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPurchasesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + purchases(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPurchaseFilter, """ + The method to use when ordering `Purchase`. + """ orderBy: [QuickbooksPurchasesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPurchasesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -121512,112 +126410,168 @@ type QuickbooksCustomer implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Customer`. """ - subCustomers( - filter: QuickbooksCustomerFilter - orderBy: [QuickbooksCustomersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCustomersConnection! + subCustomers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCustomerFilter, """ + The method to use when ordering `Customer`. + """ orderBy: [QuickbooksCustomersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCustomersConnection! """ Reads and enables pagination through a set of `Invoice`. """ - invoices( - filter: QuickbooksInvoiceFilter - orderBy: [QuickbooksInvoicesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksInvoicesConnection! + invoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksInvoiceFilter, """ + The method to use when ordering `Invoice`. + """ orderBy: [QuickbooksInvoicesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksInvoicesConnection! """ Reads and enables pagination through a set of `Estimate`. """ - estimates( - filter: QuickbooksEstimateFilter - orderBy: [QuickbooksEstimatesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksEstimatesConnection! + estimates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksEstimateFilter, """ + The method to use when ordering `Estimate`. + """ orderBy: [QuickbooksEstimatesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksEstimatesConnection! """ Reads and enables pagination through a set of `CreditMemo`. """ - creditMemos( - filter: QuickbooksCreditMemoFilter - orderBy: [QuickbooksCreditMemosOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCreditMemosConnection! + creditMemos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCreditMemoFilter, """ + The method to use when ordering `CreditMemo`. + """ orderBy: [QuickbooksCreditMemosOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCreditMemosConnection! """ Reads and enables pagination through a set of `Payment`. """ - payments( - filter: QuickbooksPaymentFilter - orderBy: [QuickbooksPaymentsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPaymentsConnection! + payments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPaymentFilter, """ + The method to use when ordering `Payment`. + """ orderBy: [QuickbooksPaymentsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPaymentsConnection! """ Reads and enables pagination through a set of `RefundReceipt`. """ - refundReceipts( - filter: QuickbooksRefundReceiptFilter - orderBy: [QuickbooksRefundReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksRefundReceiptsConnection! + refundReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksRefundReceiptFilter, """ + The method to use when ordering `RefundReceipt`. + """ orderBy: [QuickbooksRefundReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksRefundReceiptsConnection! """ Reads and enables pagination through a set of `SalesReceipt`. """ - salesReceipts( - filter: QuickbooksSalesReceiptFilter - orderBy: [QuickbooksSalesReceiptsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksSalesReceiptsConnection! + salesReceipts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksSalesReceiptFilter, """ + The method to use when ordering `SalesReceipt`. + """ orderBy: [QuickbooksSalesReceiptsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksSalesReceiptsConnection! """ Reads and enables pagination through a set of `TimeActivity`. """ - timeActivities( - filter: QuickbooksTimeActivityFilter - orderBy: [QuickbooksTimeActivitiesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksTimeActivitiesConnection! + timeActivities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksTimeActivityFilter, """ + The method to use when ordering `TimeActivity`. + """ orderBy: [QuickbooksTimeActivitiesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksTimeActivitiesConnection! """ Reads and enables pagination through a set of `Purchase`. """ - purchases( - filter: QuickbooksPurchaseFilter - orderBy: [QuickbooksPurchasesOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksPurchasesConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + purchases(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksPurchaseFilter, """ + The method to use when ordering `Purchase`. + """ orderBy: [QuickbooksPurchasesOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksPurchasesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -121669,16 +126623,24 @@ type QuickbooksTaxExemptionReason implements OneGraphNode & QuickbooksNode { """ Reads and enables pagination through a set of `Customer`. """ - customers( - filter: QuickbooksCustomerFilter - orderBy: [QuickbooksCustomersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): QuickbooksCustomersConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: QuickbooksCustomerFilter, """ + The method to use when ordering `Customer`. + """ orderBy: [QuickbooksCustomersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): QuickbooksCustomersConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -122248,85 +127210,129 @@ type ImmigrationGraphQuery implements OneGraphNode & ImmigrationGraphNode { """ Fetches an object given its globally unique `ID`. """ - node(nodeId: ID!): ImmigrationGraphNode + node(""" + The globally unique `ID`. + """ nodeId: ID!): ImmigrationGraphNode """ Reads and enables pagination through a set of `Attorney`. """ - allAttorneys( - filter: ImmigrationGraphAttorneyFilter - condition: ImmigrationGraphAttorneyCondition - orderBy: [ImmigrationGraphAttorneysOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): ImmigrationGraphAttorneysConnection + allAttorneys(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: ImmigrationGraphAttorneyFilter, """ + A condition to be used in determining which values should be returned by the collection. + """ condition: ImmigrationGraphAttorneyCondition, """ + The method to use when ordering `Attorney`. + """ orderBy: [ImmigrationGraphAttorneysOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): ImmigrationGraphAttorneysConnection """ Reads and enables pagination through a set of `Employer`. """ - allEmployers( - filter: ImmigrationGraphEmployerFilter - condition: ImmigrationGraphEmployerCondition - orderBy: [ImmigrationGraphEmployersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): ImmigrationGraphEmployersConnection + allEmployers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: ImmigrationGraphEmployerFilter, """ + A condition to be used in determining which values should be returned by the collection. + """ condition: ImmigrationGraphEmployerCondition, """ + The method to use when ordering `Employer`. + """ orderBy: [ImmigrationGraphEmployersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): ImmigrationGraphEmployersConnection """ Reads and enables pagination through a set of `EmployerPoc`. """ - allEmployerPocs( - filter: ImmigrationGraphEmployerPocFilter - condition: ImmigrationGraphEmployerPocCondition - orderBy: [ImmigrationGraphEmployerPocsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): ImmigrationGraphEmployerPocsConnection + allEmployerPocs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: ImmigrationGraphEmployerPocFilter, """ + A condition to be used in determining which values should be returned by the collection. + """ condition: ImmigrationGraphEmployerPocCondition, """ + The method to use when ordering `EmployerPoc`. + """ orderBy: [ImmigrationGraphEmployerPocsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): ImmigrationGraphEmployerPocsConnection """ Reads and enables pagination through a set of `Firm`. """ - allFirms( - filter: ImmigrationGraphFirmFilter - condition: ImmigrationGraphFirmCondition - orderBy: [ImmigrationGraphFirmsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): ImmigrationGraphFirmsConnection + allFirms(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: ImmigrationGraphFirmFilter, """ + A condition to be used in determining which values should be returned by the collection. + """ condition: ImmigrationGraphFirmCondition, """ + The method to use when ordering `Firm`. + """ orderBy: [ImmigrationGraphFirmsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): ImmigrationGraphFirmsConnection """ Reads and enables pagination through a set of `H1BApplication`. """ - allH1BApplications( - filter: ImmigrationGraphH1BApplicationFilter - condition: ImmigrationGraphH1BApplicationCondition - orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): ImmigrationGraphH1BApplicationsConnection + allH1BApplications(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: ImmigrationGraphH1BApplicationFilter, """ + A condition to be used in determining which values should be returned by the collection. + """ condition: ImmigrationGraphH1BApplicationCondition, """ + The method to use when ordering `H1BApplication`. + """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): ImmigrationGraphH1BApplicationsConnection """ Reads and enables pagination through a set of `Preparer`. """ - allPreparers( - filter: ImmigrationGraphPreparerFilter - condition: ImmigrationGraphPreparerCondition - orderBy: [ImmigrationGraphPreparersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): ImmigrationGraphPreparersConnection + allPreparers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: ImmigrationGraphPreparerFilter, """ + A condition to be used in determining which values should be returned by the collection. + """ condition: ImmigrationGraphPreparerCondition, """ + The method to use when ordering `Preparer`. + """ orderBy: [ImmigrationGraphPreparersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): ImmigrationGraphPreparersConnection """ """ @@ -122382,28 +127388,42 @@ type ImmigrationGraphQuery implements OneGraphNode & ImmigrationGraphNode { """ Reads a single `Attorney` using its globally unique `ID`. """ - attorney(nodeId: ID!): ImmigrationGraphAttorney + attorney(""" + The globally unique `ID` to be used in selecting a single `Attorney`. + """ nodeId: ID!): ImmigrationGraphAttorney """ Reads a single `Employer` using its globally unique `ID`. """ - employer(nodeId: ID!): ImmigrationGraphEmployer + employer(""" + The globally unique `ID` to be used in selecting a single `Employer`. + """ nodeId: ID!): ImmigrationGraphEmployer """ Reads a single `EmployerPoc` using its globally unique `ID`. """ - employerPoc(nodeId: ID!): ImmigrationGraphEmployerPoc + employerPoc(""" + The globally unique `ID` to be used in selecting a single `EmployerPoc`. + """ nodeId: ID!): ImmigrationGraphEmployerPoc """ Reads a single `Firm` using its globally unique `ID`. """ - firm(nodeId: ID!): ImmigrationGraphFirm + firm(""" + The globally unique `ID` to be used in selecting a single `Firm`. + """ nodeId: ID!): ImmigrationGraphFirm """ Reads a single `H1BApplication` using its globally unique `ID`. """ - h1BApplication(nodeId: ID!): ImmigrationGraphH1BApplication + h1BApplication(""" + The globally unique `ID` to be used in selecting a single `H1BApplication`. + """ nodeId: ID!): ImmigrationGraphH1BApplication """ Reads a single `Preparer` using its globally unique `ID`. """ - preparer(nodeId: ID!): ImmigrationGraphPreparer - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + preparer(""" + The globally unique `ID` to be used in selecting a single `Preparer`. + """ nodeId: ID!): ImmigrationGraphPreparer + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -122495,17 +127515,26 @@ type ImmigrationGraphEmployer implements OneGraphNode & ImmigrationGraphNode { """ Reads and enables pagination through a set of `H1BApplication`. """ - h1BApplicationsByEmployerId( - filter: ImmigrationGraphH1BApplicationFilter - condition: ImmigrationGraphH1BApplicationCondition - orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): ImmigrationGraphH1BApplicationsConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + h1BApplicationsByEmployerId(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: ImmigrationGraphH1BApplicationFilter, """ + A condition to be used in determining which values should be returned by the collection. + """ condition: ImmigrationGraphH1BApplicationCondition, """ + The method to use when ordering `H1BApplication`. + """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): ImmigrationGraphH1BApplicationsConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -123057,17 +128086,26 @@ type ImmigrationGraphPreparer implements OneGraphNode & ImmigrationGraphNode { """ Reads and enables pagination through a set of `H1BApplication`. """ - h1BApplicationsByPreparerId( - filter: ImmigrationGraphH1BApplicationFilter - condition: ImmigrationGraphH1BApplicationCondition - orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): ImmigrationGraphH1BApplicationsConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + h1BApplicationsByPreparerId(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: ImmigrationGraphH1BApplicationFilter, """ + A condition to be used in determining which values should be returned by the collection. + """ condition: ImmigrationGraphH1BApplicationCondition, """ + The method to use when ordering `H1BApplication`. + """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): ImmigrationGraphH1BApplicationsConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -123607,30 +128645,46 @@ type ImmigrationGraphFirm implements OneGraphNode & ImmigrationGraphNode { """ Reads and enables pagination through a set of `Attorney`. """ - attorneysByFirmId( - filter: ImmigrationGraphAttorneyFilter - condition: ImmigrationGraphAttorneyCondition - orderBy: [ImmigrationGraphAttorneysOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): ImmigrationGraphAttorneysConnection! + attorneysByFirmId(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: ImmigrationGraphAttorneyFilter, """ + A condition to be used in determining which values should be returned by the collection. + """ condition: ImmigrationGraphAttorneyCondition, """ + The method to use when ordering `Attorney`. + """ orderBy: [ImmigrationGraphAttorneysOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): ImmigrationGraphAttorneysConnection! """ Reads and enables pagination through a set of `Preparer`. """ - preparersByFirmId( - filter: ImmigrationGraphPreparerFilter - condition: ImmigrationGraphPreparerCondition - orderBy: [ImmigrationGraphPreparersOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): ImmigrationGraphPreparersConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + preparersByFirmId(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: ImmigrationGraphPreparerFilter, """ + A condition to be used in determining which values should be returned by the collection. + """ condition: ImmigrationGraphPreparerCondition, """ + The method to use when ordering `Preparer`. + """ orderBy: [ImmigrationGraphPreparersOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): ImmigrationGraphPreparersConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -123728,17 +128782,26 @@ type ImmigrationGraphAttorney implements OneGraphNode & ImmigrationGraphNode { """ Reads and enables pagination through a set of `H1BApplication`. """ - h1BApplicationsByAttorneyId( - filter: ImmigrationGraphH1BApplicationFilter - condition: ImmigrationGraphH1BApplicationCondition - orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): ImmigrationGraphH1BApplicationsConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + h1BApplicationsByAttorneyId(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: ImmigrationGraphH1BApplicationFilter, """ + A condition to be used in determining which values should be returned by the collection. + """ condition: ImmigrationGraphH1BApplicationCondition, """ + The method to use when ordering `H1BApplication`. + """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): ImmigrationGraphH1BApplicationsConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -123871,7 +128934,9 @@ type ImmigrationGraphH1BApplication implements OneGraphNode & ImmigrationGraphNo Reads a single `Preparer` that is related to this `H1BApplication`. """ preparerByPreparerId: ImmigrationGraphPreparer - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -123975,17 +129040,26 @@ type ImmigrationGraphEmployerPoc implements OneGraphNode & ImmigrationGraphNode """ Reads and enables pagination through a set of `H1BApplication`. """ - h1BApplicationsByEmployerPocId( - filter: ImmigrationGraphH1BApplicationFilter - condition: ImmigrationGraphH1BApplicationCondition - orderBy: [ImmigrationGraphH1BApplicationsOrderBy!] - after: String - before: String - offset: Int - last: Int - first: Int - ): ImmigrationGraphH1BApplicationsConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + h1BApplicationsByEmployerPocId(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: ImmigrationGraphH1BApplicationFilter, """ + A condition to be used in determining which values should be returned by the collection. + """ condition: ImmigrationGraphH1BApplicationCondition, """ + The method to use when ordering `H1BApplication`. + """ orderBy: [ImmigrationGraphH1BApplicationsOrderBy!], """ + Read all values in the set after (below) this cursor. + """ after: String, """ + Read all values in the set before (above) this cursor. + """ before: String, """ + Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. + """ offset: Int, """ + Only read the last `n` values of the set. + """ last: Int, """ + Only read the first `n` values of the set. + """ first: Int): ImmigrationGraphH1BApplicationsConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -124316,7 +129390,9 @@ type ImmigrationGraphScrapingStatus implements OneGraphNode & ImmigrationGraphNo """ wageLevel: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -124438,7 +129514,15 @@ type GitHubEnterpriseIdentityProvider implements OneGraphNode & GitHubNode { """ ExternalIdentities provisioned by this identity provider. """ - externalIdentities(last: Int, first: Int, before: String, after: String): GitHubExternalIdentityConnection! + externalIdentities(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubExternalIdentityConnection! """ """ @@ -124463,7 +129547,9 @@ type GitHubEnterpriseIdentityProvider implements OneGraphNode & GitHubNode { The URL endpoint for the identity provider's SAML SSO. """ ssoUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -124558,13 +129644,17 @@ type GitHubEnterprisePendingCollaboratorEdge { """ The enterprise organization repositories this user is a member of. """ - repositories( - orderBy: GitHubRepositoryOrder - last: Int - first: Int - before: String - after: String - ): GitHubEnterpriseRepositoryInfoConnection! + repositories(""" + Ordering options for repositories. + """ orderBy: GitHubRepositoryOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubEnterpriseRepositoryInfoConnection! } """ @@ -124642,7 +129732,9 @@ type GitHubEnterpriseAdministratorInvitation implements OneGraphNode & GitHubNod The invitee's pending role in the enterprise (owner or billing_manager). """ role: GitHubEnterpriseAdministratorRole! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -124720,7 +129812,9 @@ type GitHubEnterpriseRepositoryInfo implements OneGraphNode & GitHubNode { The repository's name with owner. """ nameWithOwner: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -124782,13 +129876,17 @@ type GitHubEnterpriseOutsideCollaboratorEdge { """ The enterprise organization repositories this user is a member of. """ - repositories( - orderBy: GitHubRepositoryOrder - last: Int - first: Int - before: String - after: String - ): GitHubEnterpriseRepositoryInfoConnection! + repositories(""" + Ordering options for repositories. + """ orderBy: GitHubRepositoryOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubEnterpriseRepositoryInfoConnection! } """ @@ -125031,7 +130129,9 @@ type GitHubEnterpriseServerUserAccountsUpload implements OneGraphNode & GitHubNo Identifies the date and time when the object was last updated. """ updatedAt: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -125148,7 +130248,9 @@ type GitHubEnterpriseServerUserAccountEmail implements OneGraphNode & GitHubNode The user account to which the email belongs. """ userAccount: GitHubEnterpriseServerUserAccount! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -125202,13 +130304,17 @@ type GitHubEnterpriseServerUserAccount implements OneGraphNode & GitHubNode { """ User emails belonging to this user account. """ - emails( - last: Int - first: Int - before: String - after: String - orderBy: GitHubEnterpriseServerUserAccountEmailOrder - ): GitHubEnterpriseServerUserAccountEmailConnection! + emails(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for Enterprise Server user account emails returned from the connection. + """ orderBy: GitHubEnterpriseServerUserAccountEmailOrder): GitHubEnterpriseServerUserAccountEmailConnection! """ The Enterprise Server installation on which this user account exists. """ @@ -125241,7 +130347,9 @@ type GitHubEnterpriseServerUserAccount implements OneGraphNode & GitHubNode { Identifies the date and time when the object was last updated. """ updatedAt: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -125315,24 +130423,34 @@ type GitHubEnterpriseServerInstallation implements OneGraphNode & GitHubNode { """ User accounts on this Enterprise Server installation. """ - userAccounts( - last: Int - first: Int - before: String - after: String - orderBy: GitHubEnterpriseServerUserAccountOrder - ): GitHubEnterpriseServerUserAccountConnection! + userAccounts(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for Enterprise Server user accounts returned from the connection. + """ orderBy: GitHubEnterpriseServerUserAccountOrder): GitHubEnterpriseServerUserAccountConnection! """ User accounts uploads for the Enterprise Server installation. """ - userAccountsUploads( - last: Int - first: Int - before: String - after: String - orderBy: GitHubEnterpriseServerUserAccountsUploadOrder - ): GitHubEnterpriseServerUserAccountsUploadConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userAccountsUploads(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for Enterprise Server user accounts uploads returned from the connection. + """ orderBy: GitHubEnterpriseServerUserAccountsUploadOrder): GitHubEnterpriseServerUserAccountsUploadConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -125471,34 +130589,47 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided action execution capabilities setting value. """ - actionExecutionCapabilitySettingOrganizations( - orderBy: GitHubOrganizationOrder - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + actionExecutionCapabilitySettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ A list of all of the administrators for this enterprise. """ - admins( - last: Int - first: Int - before: String - after: String - orderBy: GitHubEnterpriseMemberOrder - role: GitHubEnterpriseAdministratorRole - query: String - ): GitHubEnterpriseAdministratorConnection! + admins(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for administrators returned from the connection. + """ orderBy: GitHubEnterpriseMemberOrder, """ + The role to filter by. + """ role: GitHubEnterpriseAdministratorRole, """ + The search string to look for. + """ query: String): GitHubEnterpriseAdministratorConnection! """ A list of users in the enterprise who currently have two-factor authentication disabled. """ - affiliatedUsersWithTwoFactorDisabled( - last: Int - first: Int - before: String - after: String - ): GitHubUserConnection! + affiliatedUsersWithTwoFactorDisabled(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserConnection! """ Whether or not affiliated users with two-factor authentication disabled exist in the enterprise. """ @@ -125510,14 +130641,19 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided private repository forking setting value. """ - allowPrivateRepositoryForkingSettingOrganizations( - orderBy: GitHubOrganizationOrder - value: Boolean! - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + allowPrivateRepositoryForkingSettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + The setting value to find organizations for. + """ value: Boolean!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ The setting value for base repository permissions for organizations in this enterprise. """ @@ -125525,25 +130661,35 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided default repository permission. """ - defaultRepositoryPermissionSettingOrganizations( - orderBy: GitHubOrganizationOrder - value: GitHubDefaultRepositoryPermissionField! - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + defaultRepositoryPermissionSettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + The permission to find organizations for. + """ value: GitHubDefaultRepositoryPermissionField!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ Enterprise Server installations owned by the enterprise. """ - enterpriseServerInstallations( - orderBy: GitHubEnterpriseServerInstallationOrder - connectedOnly: Boolean - last: Int - first: Int - before: String - after: String - ): GitHubEnterpriseServerInstallationConnection! + enterpriseServerInstallations(""" + Ordering options for Enterprise Server installations returned. + """ orderBy: GitHubEnterpriseServerInstallationOrder, """ + Whether or not to only return installations discovered via GitHub Connect. + """ connectedOnly: Boolean, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubEnterpriseServerInstallationConnection! """ The setting value for whether the enterprise has an IP allow list enabled. """ @@ -125551,13 +130697,17 @@ type GitHubEnterpriseOwnerInfo { """ The IP addresses that are allowed to access resources owned by the enterprise. """ - ipAllowListEntries( - orderBy: GitHubIpAllowListEntryOrder - last: Int - first: Int - before: String - after: String - ): GitHubIpAllowListEntryConnection! + ipAllowListEntries(""" + Ordering options for IP allow list entries returned. + """ orderBy: GitHubIpAllowListEntryOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubIpAllowListEntryConnection! """ Whether or not the default repository permission is currently being updated. """ @@ -125573,14 +130723,19 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided can change repository visibility setting value. """ - membersCanChangeRepositoryVisibilitySettingOrganizations( - orderBy: GitHubOrganizationOrder - value: Boolean! - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + membersCanChangeRepositoryVisibilitySettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + The setting value to find organizations for. + """ value: Boolean!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ The setting value for whether members of organizations in the enterprise can create internal repositories. """ @@ -125600,14 +130755,19 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided repository creation setting value. """ - membersCanCreateRepositoriesSettingOrganizations( - orderBy: GitHubOrganizationOrder - value: GitHubOrganizationMembersCanCreateRepositoriesSettingValue! - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + membersCanCreateRepositoriesSettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + The setting to find organizations for. + """ value: GitHubOrganizationMembersCanCreateRepositoriesSettingValue!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ The setting value for whether members with admin permissions for repositories can delete issues. """ @@ -125615,14 +130775,19 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided members can delete issues setting value. """ - membersCanDeleteIssuesSettingOrganizations( - orderBy: GitHubOrganizationOrder - value: Boolean! - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + membersCanDeleteIssuesSettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + The setting value to find organizations for. + """ value: Boolean!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ The setting value for whether members with admin permissions for repositories can delete or transfer repositories. """ @@ -125630,14 +130795,19 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided members can delete repositories setting value. """ - membersCanDeleteRepositoriesSettingOrganizations( - orderBy: GitHubOrganizationOrder - value: Boolean! - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + membersCanDeleteRepositoriesSettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + The setting value to find organizations for. + """ value: Boolean!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ The setting value for whether members of organizations in the enterprise can invite outside collaborators. """ @@ -125645,14 +130815,19 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided members can invite collaborators setting value. """ - membersCanInviteCollaboratorsSettingOrganizations( - orderBy: GitHubOrganizationOrder - value: Boolean! - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + membersCanInviteCollaboratorsSettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + The setting value to find organizations for. + """ value: Boolean!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ Indicates whether members of this enterprise's organizations can purchase additional services for those organizations. """ @@ -125664,14 +130839,19 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided members can update protected branches setting value. """ - membersCanUpdateProtectedBranchesSettingOrganizations( - orderBy: GitHubOrganizationOrder - value: Boolean! - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + membersCanUpdateProtectedBranchesSettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + The setting value to find organizations for. + """ value: Boolean!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ The setting value for whether members can view dependency insights. """ @@ -125679,14 +130859,19 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided members can view dependency insights setting value. """ - membersCanViewDependencyInsightsSettingOrganizations( - orderBy: GitHubOrganizationOrder - value: Boolean! - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + membersCanViewDependencyInsightsSettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + The setting value to find organizations for. + """ value: Boolean!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ The setting value for whether organization projects are enabled for organizations in this enterprise. """ @@ -125694,60 +130879,87 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided organization projects setting value. """ - organizationProjectsSettingOrganizations( - orderBy: GitHubOrganizationOrder - value: Boolean! - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + organizationProjectsSettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + The setting value to find organizations for. + """ value: Boolean!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ A list of outside collaborators across the repositories in the enterprise. """ - outsideCollaborators( - last: Int - first: Int - before: String - after: String - visibility: GitHubRepositoryVisibility - orderBy: GitHubEnterpriseMemberOrder - query: String - login: String - ): GitHubEnterpriseOutsideCollaboratorConnection! + outsideCollaborators(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Only return outside collaborators on repositories with this visibility. + """ visibility: GitHubRepositoryVisibility, """ + Ordering options for outside collaborators returned from the connection. + """ orderBy: GitHubEnterpriseMemberOrder, """ + The search string to look for. + """ query: String, """ + The login of one specific outside collaborator. + """ login: String): GitHubEnterpriseOutsideCollaboratorConnection! """ A list of pending administrator invitations for the enterprise. """ - pendingAdminInvitations( - last: Int - first: Int - before: String - after: String - role: GitHubEnterpriseAdministratorRole - orderBy: GitHubEnterpriseAdministratorInvitationOrder - query: String - ): GitHubEnterpriseAdministratorInvitationConnection! + pendingAdminInvitations(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + The role to filter by. + """ role: GitHubEnterpriseAdministratorRole, """ + Ordering options for pending enterprise administrator invitations returned from the connection. + """ orderBy: GitHubEnterpriseAdministratorInvitationOrder, """ + The search string to look for. + """ query: String): GitHubEnterpriseAdministratorInvitationConnection! """ A list of pending collaborators across the repositories in the enterprise. """ - pendingCollaborators( - last: Int - first: Int - before: String - after: String - orderBy: GitHubRepositoryInvitationOrder - query: String - ): GitHubEnterprisePendingCollaboratorConnection! + pendingCollaborators(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for pending repository collaborator invitations returned from the connection. + """ orderBy: GitHubRepositoryInvitationOrder, """ + The search string to look for. + """ query: String): GitHubEnterprisePendingCollaboratorConnection! """ A list of pending member invitations for organizations in the enterprise. """ - pendingMemberInvitations( - last: Int - first: Int - before: String - after: String - query: String - ): GitHubEnterprisePendingMemberInvitationConnection! + pendingMemberInvitations(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + The search string to look for. + """ query: String): GitHubEnterprisePendingMemberInvitationConnection! """ The setting value for whether repository projects are enabled in this enterprise. """ @@ -125755,14 +130967,19 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided repository projects setting value. """ - repositoryProjectsSettingOrganizations( - orderBy: GitHubOrganizationOrder - value: Boolean! - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + repositoryProjectsSettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + The setting value to find organizations for. + """ value: Boolean!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ The SAML Identity Provider for the enterprise. """ @@ -125770,14 +130987,19 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the SAML single sign-on setting value. """ - samlIdentityProviderSettingOrganizations( - orderBy: GitHubOrganizationOrder - value: GitHubIdentityProviderConfigurationState! - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + samlIdentityProviderSettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + The setting value to find organizations for. + """ value: GitHubIdentityProviderConfigurationState!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ The setting value for whether team discussions are enabled for organizations in this enterprise. """ @@ -125785,14 +131007,19 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the provided team discussions setting value. """ - teamDiscussionsSettingOrganizations( - orderBy: GitHubOrganizationOrder - value: Boolean! - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + teamDiscussionsSettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + The setting value to find organizations for. + """ value: Boolean!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ The setting value for whether the enterprise requires two-factor authentication for its organizations and users. """ @@ -125800,14 +131027,19 @@ type GitHubEnterpriseOwnerInfo { """ A list of enterprise organizations configured with the two-factor authentication setting value. """ - twoFactorRequiredSettingOrganizations( - orderBy: GitHubOrganizationOrder - value: Boolean! - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationConnection! + twoFactorRequiredSettingOrganizations(""" + Ordering options for organizations with this setting. + """ orderBy: GitHubOrganizationOrder, """ + The setting value to find organizations for. + """ value: Boolean!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! } enum GitHubEnterpriseUserDeployment { @@ -125929,7 +131161,9 @@ type GitHubEnterpriseUserAccount implements OneGraphNode & GitHubNode & GitHubAc """ A URL pointing to the enterprise user account's public avatar. """ - avatarUrl(size: Int): String! + avatarUrl(""" + The size of the resulting square image. + """ size: Int): String! """ Identifies the date and time when the object was created. """ @@ -125953,15 +131187,21 @@ type GitHubEnterpriseUserAccount implements OneGraphNode & GitHubNode & GitHubAc """ A list of enterprise organizations this user is a member of. """ - organizations( - last: Int - first: Int - before: String - after: String - role: GitHubEnterpriseUserAccountMembershipRole - orderBy: GitHubOrganizationOrder - query: String - ): GitHubEnterpriseOrganizationMembershipConnection! + organizations(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + The role of the user in the enterprise organization. + """ role: GitHubEnterpriseUserAccountMembershipRole, """ + Ordering options for organizations returned from the connection. + """ orderBy: GitHubOrganizationOrder, """ + The search string to look for. + """ query: String): GitHubEnterpriseOrganizationMembershipConnection! """ The HTTP path for this user. """ @@ -125978,7 +131218,9 @@ type GitHubEnterpriseUserAccount implements OneGraphNode & GitHubNode & GitHubAc The user within the enterprise. """ user: GitHubUser - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126093,7 +131335,9 @@ type GitHubEnterprise implements OneGraphNode & GitHubNode { """ A URL pointing to the enterprise's public avatar. """ - avatarUrl(size: Int): String! + avatarUrl(""" + The size of the resulting square image. + """ size: Int): String! """ Enterprise billing information visible to enterprise billing managers. """ @@ -126125,17 +131369,25 @@ type GitHubEnterprise implements OneGraphNode & GitHubNode { """ A list of users who are members of this enterprise. """ - members( - last: Int - first: Int - before: String - after: String - deployment: GitHubEnterpriseUserDeployment - role: GitHubEnterpriseUserAccountMembershipRole - orderBy: GitHubEnterpriseMemberOrder - query: String - organizationLogins: [String!] - ): GitHubEnterpriseMemberConnection! + members(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Only return members within the selected GitHub Enterprise deployment + """ deployment: GitHubEnterpriseUserDeployment, """ + The role of the user in the enterprise organization or server. + """ role: GitHubEnterpriseUserAccountMembershipRole, """ + Ordering options for members returned from the connection. + """ orderBy: GitHubEnterpriseMemberOrder, """ + The search string to look for. + """ query: String, """ + Only return members within the organizations with these logins + """ organizationLogins: [String!]): GitHubEnterpriseMemberConnection! """ The name of the enterprise. """ @@ -126143,14 +131395,19 @@ type GitHubEnterprise implements OneGraphNode & GitHubNode { """ A list of organizations that belong to this enterprise. """ - organizations( - last: Int - first: Int - before: String - after: String - orderBy: GitHubOrganizationOrder - query: String - ): GitHubOrganizationConnection! + organizations(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for organizations returned from the connection. + """ orderBy: GitHubOrganizationOrder, """ + The search string to look for. + """ query: String): GitHubOrganizationConnection! """ Enterprise information only visible to enterprise owners. """ @@ -126170,7 +131427,15 @@ type GitHubEnterprise implements OneGraphNode & GitHubNode { """ A list of user accounts on this enterprise. """ - userAccounts(last: Int, first: Int, before: String, after: String): GitHubEnterpriseUserAccountConnection! + userAccounts(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubEnterpriseUserAccountConnection! """ Is the current viewer an admin of this enterprise? """ @@ -126179,7 +131444,9 @@ type GitHubEnterprise implements OneGraphNode & GitHubNode { The URL of the enterprise website. """ websiteUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126223,7 +131490,9 @@ type GitHubIpAllowListEntry implements OneGraphNode & GitHubNode { Identifies the date and time when the object was last updated. """ updatedAt: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126278,7 +131547,9 @@ type GitHubExternalIdentity implements OneGraphNode & GitHubNode { User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member. """ user: GitHubUser - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126332,7 +131603,15 @@ type GitHubOrganizationIdentityProvider implements OneGraphNode & GitHubNode { """ External Identities provisioned by this Identity Provider """ - externalIdentities(last: Int, first: Int, before: String, after: String): GitHubExternalIdentityConnection! + externalIdentities(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubExternalIdentityConnection! """ """ @@ -126357,7 +131636,9 @@ type GitHubOrganizationIdentityProvider implements OneGraphNode & GitHubNode { The URL endpoint for the Identity Provider's SAML SSO. """ ssoUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126396,7 +131677,9 @@ type GitHubPublicKey implements OneGraphNode & GitHubNode { Identifies the date and time when the key was updated. Keys created before March 5th, 2014 may have inaccurate values. Values will be null for keys not owned by the user. """ updatedAt: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126427,7 +131710,9 @@ type GitHubRepositoryInvitation implements OneGraphNode & GitHubNode { The Repository the user is invited to. """ repository: GitHubRepositoryInfo - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126462,7 +131747,9 @@ type GitHubSavedReply implements OneGraphNode & GitHubNode { The user that saved this reply. """ user: GitHubActor - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126565,14 +131852,20 @@ type GitHubSponsorsListing implements OneGraphNode & GitHubNode { """ The published tiers for this GitHub Sponsors listing. """ - tiers( - orderBy: GitHubSponsorsTierOrder - last: Int - first: Int - before: String - after: String - ): GitHubSponsorsTierConnection - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + tiers(""" + Ordering options for Sponsors tiers returned from the connection. + """ orderBy: GitHubSponsorsTierOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubSponsorsTierConnection + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126643,14 +131936,19 @@ type GitHubSponsorsTierAdminInfo { """ The sponsorships associated with this tier. """ - sponsorships( - orderBy: GitHubSponsorshipOrder - includePrivate: Boolean - last: Int - first: Int - before: String - after: String - ): GitHubSponsorshipConnection! + 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, """ + Whether or not to include private sponsorships in the result set + """ includePrivate: Boolean, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubSponsorshipConnection! } """ @@ -126697,7 +131995,9 @@ type GitHubSponsorsTier implements OneGraphNode & GitHubNode { Identifies the date and time when the object was last updated. """ updatedAt: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126715,24 +132015,33 @@ interface GitHubSponsorable { """ This object's sponsorships as the maintainer. """ - sponsorshipsAsMaintainer( - orderBy: GitHubSponsorshipOrder - includePrivate: Boolean - last: Int - first: Int - before: String - after: String - ): GitHubSponsorshipConnection! + 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, """ + Whether or not to include private sponsorships in the result set + """ includePrivate: Boolean, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubSponsorshipConnection! """ This object's sponsorships as the sponsor. """ - sponsorshipsAsSponsor( - orderBy: GitHubSponsorshipOrder - last: Int - first: Int - before: String - after: String - ): GitHubSponsorshipConnection! + 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, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubSponsorshipConnection! } enum GitHubSponsorshipPrivacy { @@ -126779,7 +132088,9 @@ type GitHubSponsorship implements OneGraphNode & GitHubNode { The associated sponsorship tier """ tier: GitHubSponsorsTier - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126866,7 +132177,9 @@ type GitHubOrgAddBillingManagerAuditEntry implements OneGraphNode & GitHubOrgani The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -126964,7 +132277,9 @@ type GitHubOrgAddMemberAuditEntry implements OneGraphNode & GitHubOrganizationAu The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127063,7 +132378,9 @@ type GitHubOrgBlockUserAuditEntry implements OneGraphNode & GitHubOrganizationAu The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127146,7 +132463,9 @@ type GitHubOrgConfigDisableCollaboratorsOnlyAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127229,7 +132548,9 @@ type GitHubOrgConfigEnableCollaboratorsOnlyAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127339,7 +132660,9 @@ type GitHubOrgCreateAuditEntry implements OneGraphNode & GitHubOrganizationAudit The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127422,7 +132745,9 @@ type GitHubOrgDisableOauthAppRestrictionsAuditEntry implements OneGraphNode & Gi The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127521,7 +132846,9 @@ type GitHubOrgDisableSamlAuditEntry implements OneGraphNode & GitHubOrganization The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127604,7 +132931,9 @@ type GitHubOrgDisableTwoFactorRequirementAuditEntry implements OneGraphNode & Gi The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127687,7 +133016,9 @@ type GitHubOrgEnableOauthAppRestrictionsAuditEntry implements OneGraphNode & Git The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127786,7 +133117,9 @@ type GitHubOrgEnableSamlAuditEntry implements OneGraphNode & GitHubOrganizationA The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127869,7 +133202,9 @@ type GitHubOrgEnableTwoFactorRequirementAuditEntry implements OneGraphNode & Git The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -127960,7 +133295,9 @@ type GitHubOrgInviteMemberAuditEntry implements OneGraphNode & GitHubOrganizatio The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -128086,7 +133423,9 @@ type GitHubOauthApplicationCreateAuditEntry implements OneGraphNode & GitHubOrga The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -128181,7 +133520,9 @@ type GitHubOrgOauthAppAccessApprovedAuditEntry implements OneGraphNode & GitHubO The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -128276,7 +133617,9 @@ type GitHubOrgOauthAppAccessDeniedAuditEntry implements OneGraphNode & GitHubOrg The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -128389,7 +133732,9 @@ type GitHubOrgOauthAppAccessRequestedAuditEntry implements OneGraphNode & GitHub The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -128491,7 +133836,9 @@ type GitHubOrgRemoveBillingManagerAuditEntry implements OneGraphNode & GitHubOrg The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -128620,7 +133967,9 @@ type GitHubOrgRemoveMemberAuditEntry implements OneGraphNode & GitHubOrganizatio The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -128737,7 +134086,9 @@ type GitHubOrgRemoveOutsideCollaboratorAuditEntry implements OneGraphNode & GitH The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -128919,7 +134270,9 @@ type GitHubOrgRestoreMemberAuditEntry implements OneGraphNode & GitHubOrganizati The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129018,7 +134371,9 @@ type GitHubOrgUnblockUserAuditEntry implements OneGraphNode & GitHubOrganization The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129128,7 +134483,9 @@ type GitHubOrgUpdateDefaultRepositoryPermissionAuditEntry implements OneGraphNod The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129230,7 +134587,9 @@ type GitHubOrgUpdateMemberAuditEntry implements OneGraphNode & GitHubOrganizatio The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129332,7 +134691,9 @@ type GitHubOrgUpdateMemberRepositoryCreationPermissionAuditEntry implements OneG The permission for visibility level of repositories for this organization. """ visibility: GitHubOrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129419,7 +134780,9 @@ type GitHubOrgUpdateMemberRepositoryInvitationPermissionAuditEntry implements On The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129537,7 +134900,9 @@ type GitHubRepoAccessAuditEntry implements OneGraphNode & GitHubRepositoryAuditE The visibility of the repository """ visibility: GitHubRepoAccessAuditEntryVisibility - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129655,7 +135020,9 @@ type GitHubRepoAddMemberAuditEntry implements OneGraphNode & GitHubRepositoryAud The visibility of the repository """ visibility: GitHubRepoAddMemberAuditEntryVisibility - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129773,7 +135140,9 @@ type GitHubRepoArchivedAuditEntry implements OneGraphNode & GitHubRepositoryAudi The visibility of the repository """ visibility: GitHubRepoArchivedAuditEntryVisibility - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129895,7 +135264,9 @@ type GitHubRepoChangeMergeSettingAuditEntry implements OneGraphNode & GitHubRepo The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -129994,7 +135365,9 @@ type GitHubRepoConfigDisableAnonymousGitAccessAuditEntry implements OneGraphNode The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130093,7 +135466,9 @@ type GitHubRepoConfigDisableCollaboratorsOnlyAuditEntry implements OneGraphNode The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130192,7 +135567,9 @@ type GitHubRepoConfigDisableContributorsOnlyAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130291,7 +135668,9 @@ type GitHubRepoConfigDisableSockpuppetDisallowedAuditEntry implements OneGraphNo The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130390,7 +135769,9 @@ type GitHubRepoConfigEnableAnonymousGitAccessAuditEntry implements OneGraphNode The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130489,7 +135870,9 @@ type GitHubRepoConfigEnableCollaboratorsOnlyAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130588,7 +135971,9 @@ type GitHubRepoConfigEnableContributorsOnlyAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130687,7 +136072,9 @@ type GitHubRepoConfigEnableSockpuppetDisallowedAuditEntry implements OneGraphNod The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130786,7 +136173,9 @@ type GitHubRepoConfigLockAnonymousGitAccessAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -130885,7 +136274,9 @@ type GitHubRepoConfigUnlockAnonymousGitAccessAuditEntry implements OneGraphNode The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131011,7 +136402,9 @@ type GitHubRepoCreateAuditEntry implements OneGraphNode & GitHubRepositoryAuditE The visibility of the repository """ visibility: GitHubRepoCreateAuditEntryVisibility - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131129,7 +136522,9 @@ type GitHubRepoDestroyAuditEntry implements OneGraphNode & GitHubRepositoryAudit The visibility of the repository """ visibility: GitHubRepoDestroyAuditEntryVisibility - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131247,7 +136642,9 @@ type GitHubRepoRemoveMemberAuditEntry implements OneGraphNode & GitHubRepository The visibility of the repository """ visibility: GitHubRepoRemoveMemberAuditEntryVisibility - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131342,7 +136739,9 @@ type GitHubMembersCanDeleteReposClearAuditEntry implements OneGraphNode & GitHub The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131437,7 +136836,9 @@ type GitHubMembersCanDeleteReposDisableAuditEntry implements OneGraphNode & GitH The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131532,7 +136933,9 @@ type GitHubMembersCanDeleteReposEnableAuditEntry implements OneGraphNode & GitHu The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131627,7 +137030,9 @@ type GitHubOrgInviteToBusinessAuditEntry implements OneGraphNode & GitHubOrganiz The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131738,7 +137143,9 @@ type GitHubPrivateRepositoryForkingDisableAuditEntry implements OneGraphNode & G The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131849,7 +137256,9 @@ type GitHubPrivateRepositoryForkingEnableAuditEntry implements OneGraphNode & Gi The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -131944,7 +137353,9 @@ type GitHubRepositoryVisibilityChangeDisableAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132057,7 +137468,9 @@ type GitHubRepositoryVisibilityChangeEnableAuditEntry implements OneGraphNode & The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132160,7 +137573,9 @@ type GitHubTeamAddMemberAuditEntry implements OneGraphNode & GitHubTeamAuditEntr The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132325,7 +137740,9 @@ type GitHubRepoAddTopicAuditEntry implements OneGraphNode & GitHubTopicAuditEntr The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132446,7 +137863,9 @@ type GitHubRepoRemoveTopicAuditEntry implements OneGraphNode & GitHubTopicAuditE The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132587,7 +138006,9 @@ type GitHubTeamAddRepositoryAuditEntry implements OneGraphNode & GitHubTeamAudit The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132744,7 +138165,9 @@ type GitHubTeamChangeParentTeamAuditEntry implements OneGraphNode & GitHubTeamAu The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132926,7 +138349,9 @@ type GitHubTeamRemoveMemberAuditEntry implements OneGraphNode & GitHubTeamAuditE The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -132953,7 +138378,9 @@ type GitHubBaseRefChangedEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133097,7 +138524,15 @@ type GitHubStatusCheckRollup implements OneGraphNode & GitHubNode { """ A list of status contexts and check runs for this commit. """ - contexts(last: Int, first: Int, before: String, after: String): GitHubStatusCheckRollupContextConnection! + contexts(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubStatusCheckRollupContextConnection! """ """ @@ -133106,7 +138541,9 @@ type GitHubStatusCheckRollup implements OneGraphNode & GitHubNode { The combined status for the commit. """ state: GitHubStatusState! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133148,7 +138585,9 @@ type GitHubStatusContext implements OneGraphNode & GitHubNode { """ The avatar of the OAuth application or the user that created the status """ - avatarUrl(size: Int): String + avatarUrl(""" + The size of the resulting square image. + """ size: Int): String """ This commit this status context is attached to. """ @@ -133181,7 +138620,9 @@ type GitHubStatusContext implements OneGraphNode & GitHubNode { The URL for this status context. """ targetUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133199,7 +138640,9 @@ type GitHubStatus implements OneGraphNode & GitHubNode { """ Looks up an individual status context by context name. """ - context(name: String!): GitHubStatusContext + context(""" + The context name. + """ name: String!): GitHubStatusContext """ The individual status contexts for this commit. """ @@ -133212,7 +138655,9 @@ type GitHubStatus implements OneGraphNode & GitHubNode { The combined commit status. """ state: GitHubStatusState! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -133944,7 +139389,9 @@ type GitHubReviewRequest implements OneGraphNode & GitHubNode { The reviewer that is requested. """ requestedReviewer: GitHubRequestedReviewer - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134103,18 +139550,27 @@ interface GitHubRegistryPackageOwner { """ A list of registry packages under the owner. """ - registryPackages( - publicOnly: Boolean - registryPackageType: String - packageType: GitHubRegistryPackageType - repositoryId: ID - names: [String] - name: String - last: Int - first: Int - before: String - after: String - ): GitHubRegistryPackageConnection! + registryPackages(""" + Filter registry package by whether it is publicly visible + """ publicOnly: Boolean, """ + Filter registry package by type (string). + """ registryPackageType: String, """ + Filter registry package by type. + """ packageType: GitHubRegistryPackageType, """ + Find registry packages in a repository. + """ repositoryId: ID, """ + Find registry packages by their names. + """ names: [String], """ + Find registry package by name. + """ name: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ 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.") } @@ -134129,14 +139585,19 @@ interface GitHubRegistryPackageSearch { """ A list of registry packages for a particular search query. """ - registryPackagesForQuery( - packageType: GitHubRegistryPackageType - query: String - last: Int - first: Int - before: String - after: String - ): GitHubRegistryPackageConnection! + registryPackagesForQuery(""" + Filter registry package by type. + """ packageType: GitHubRegistryPackageType, """ + Find registry package by search query. + """ query: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ 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.") } @@ -134239,7 +139700,9 @@ interface GitHubRepositoryInfo { """ A description of the repository, rendered to HTML without any links in it. """ - shortDescriptionHTML(limit: Int): String! + shortDescriptionHTML(""" + How many characters to return. + """ limit: Int): String! """ Identifies the date and time when the object was last updated. """ @@ -134522,7 +139985,9 @@ type GitHubRegistryPackageTag implements OneGraphNode & GitHubNode { """ version: GitHubRegistryPackageVersion @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageTag` object instead. Removal on 2020-04-01 UTC.") - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134787,7 +140252,9 @@ type GitHubRegistryPackageFile implements OneGraphNode & GitHubNode { """ url: String! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageFile` object instead. Removal on 2020-04-01 UTC.") - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134844,7 +140311,9 @@ type GitHubRegistryPackageDependency implements OneGraphNode & GitHubNode { """ version: String! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageDependency` object instead. Removal on 2020-04-01 UTC.") - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -134894,23 +140363,37 @@ type GitHubRegistryPackageVersion implements OneGraphNode & GitHubNode { """ list of dependencies for this package """ - dependencies( - type: GitHubRegistryPackageDependencyType - last: Int - first: Int - before: String - after: String - ): GitHubRegistryPackageDependencyConnection! + dependencies(""" + Find dependencies by type. + """ type: GitHubRegistryPackageDependencyType, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ 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.") """ A file associated with this registry package version """ - fileByName(filename: String!): GitHubRegistryPackageFile + 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.") """ List of files associated with this registry package version """ - files(last: Int, first: Int, before: String, after: String): GitHubRegistryPackageFileConnection! + files(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ 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.") """ @@ -134991,7 +140474,9 @@ type GitHubRegistryPackageVersion implements OneGraphNode & GitHubNode { """ viewerCanEdit: Boolean! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageVersion` object instead. Removal on 2020-04-01 UTC.") - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135029,12 +140514,16 @@ type GitHubRegistryPackage implements OneGraphNode & GitHubNode { """ Find the package file identified by the guid. """ - packageFileByGuid(guid: String!): GitHubRegistryPackageFile + 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.") """ Find the package file identified by the sha256. """ - packageFileBySha256(sha256: String!): GitHubRegistryPackageFile + 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.") """ Identifies the type of the package. @@ -135044,7 +140533,15 @@ type GitHubRegistryPackage implements OneGraphNode & GitHubNode { """ List the prerelease versions for this package. """ - preReleaseVersions(last: Int, first: Int, before: String, after: String): GitHubRegistryPackageVersionConnection + preReleaseVersions(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ 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.") """ The type of the package. @@ -135064,45 +140561,83 @@ type GitHubRegistryPackage implements OneGraphNode & GitHubNode { """ list of tags for this package """ - tags(last: Int, first: Int, before: String, after: String): GitHubRegistryPackageTagConnection! + tags(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ 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.") """ List the topics for this package. """ - topics(last: Int, first: Int, before: String, after: String): GitHubTopicConnection + topics(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ 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.") """ Find package version by version string. """ - version(version: String!): GitHubRegistryPackageVersion + 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.") """ Find package version by version string. """ - versionByPlatform(platform: String!, version: String!): GitHubRegistryPackageVersion + versionByPlatform(""" + Find a registry package for a specific platform. + """ 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.") """ Find package version by manifest SHA256. """ - versionBySha256(sha256: String!): GitHubRegistryPackageVersion + 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.") """ list of versions for this package """ - versions(last: Int, first: Int, before: String, after: String): GitHubRegistryPackageVersionConnection! + versions(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ 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.") """ List package versions with a specific metadatum. """ - versionsByMetadatum( - last: Int - first: Int - before: String - after: String - metadatum: GitHubRegistryPackageMetadatum! - ): GitHubRegistryPackageVersionConnection + versionsByMetadatum(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ 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.") - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135279,7 +140814,9 @@ type GitHubBlob implements OneGraphNode & GitHubNode & GitHubGitObject { UTF8 text data or null if the Blob is binary """ text: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135293,7 +140830,9 @@ type GitHubGitActor { """ A URL pointing to the author's public avatar. """ - avatarUrl(size: Int): String! + avatarUrl(""" + The size of the resulting square image. + """ size: Int): String! """ The timestamp of the Git action (authoring or committing). """ @@ -135356,7 +140895,9 @@ type GitHubTag implements OneGraphNode & GitHubNode & GitHubGitObject { The Git object the tag points to. """ target: GitHubGitObject! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135455,7 +140996,9 @@ type GitHubTree implements OneGraphNode & GitHubNode & GitHubGitObject { The Repository the Git object belongs to """ repository: GitHubRepository! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135662,7 +141205,9 @@ type GitHubLicense implements OneGraphNode & GitHubNode { URL to the license on """ url: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -135979,7 +141524,9 @@ type GitHubDeployKey implements OneGraphNode & GitHubNode { Whether or not the deploy key has been verified. """ verified: Boolean! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136146,7 +141693,9 @@ type GitHubCodeOfConduct implements OneGraphNode & GitHubNode { The HTTP URL for this Code of Conduct """ url: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136169,7 +141718,9 @@ type GitHubReviewDismissalAllowance implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136219,13 +141770,17 @@ interface GitHubMemberStatusable { """ Get the status messages members of this entity have set that are either public or visible only to the organization. """ - memberStatuses( - orderBy: GitHubUserStatusOrder - last: Int - first: Int - before: String - after: String - ): GitHubUserStatusConnection! + memberStatuses(""" + Ordering options for user statuses returned from the connection. + """ orderBy: GitHubUserStatusOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserStatusConnection! } """ @@ -136261,7 +141816,9 @@ type GitHubReadyForReviewEvent implements OneGraphNode & GitHubUniformResourceLo The HTTP URL for this ready for review event. """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136316,7 +141873,9 @@ type GitHubReleaseAsset implements OneGraphNode & GitHubNode { Identifies the URL of the release asset. """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136402,13 +141961,17 @@ type GitHubRelease implements OneGraphNode & GitHubUniformResourceLocatable & Gi """ List of releases assets which are dependent on this release. """ - releaseAssets( - name: String - last: Int - first: Int - before: String - after: String - ): GitHubReleaseAssetConnection! + releaseAssets(""" + A list of names to filter the assets by. + """ name: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubReleaseAssetConnection! """ The HTTP path for this issue """ @@ -136416,7 +141979,9 @@ type GitHubRelease implements OneGraphNode & GitHubUniformResourceLocatable & Gi """ A description of the release, rendered to HTML without any links in it. """ - shortDescriptionHTML(limit: Int): String + shortDescriptionHTML(""" + How many characters to return. + """ limit: Int): String """ The Git tag the release points to """ @@ -136433,7 +141998,9 @@ type GitHubRelease implements OneGraphNode & GitHubUniformResourceLocatable & Gi The HTTP URL for this issue """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136460,7 +142027,9 @@ type GitHubRepositoryTopic implements OneGraphNode & GitHubUniformResourceLocata The HTTP URL for this repository-topic. """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136512,7 +142081,9 @@ type GitHubMarketplaceCategory implements OneGraphNode & GitHubNode { The HTTP URL for this Marketplace category. """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136546,7 +142117,9 @@ type GitHubApp implements OneGraphNode & GitHubNode { """ A URL pointing to the app's logo. """ - logoUrl(size: Int): String! + logoUrl(""" + The size of the resulting image. + """ size: Int): String! """ The name of the app. """ @@ -136563,7 +142136,9 @@ type GitHubApp implements OneGraphNode & GitHubNode { The URL to the app's homepage. """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -136700,7 +142275,9 @@ type GitHubMarketplaceListing implements OneGraphNode & GitHubNode { """ URL for the listing's logo image. """ - logoUrl(size: Int): String + logoUrl(""" + The size in pixels of the resulting square image. + """ size: Int): String """ The listing's full name. """ @@ -136814,7 +142391,9 @@ type GitHubMarketplaceListing implements OneGraphNode & GitHubNode { Does the current viewer role allow them to administer this Marketplace listing. """ viewerIsListingAdmin: Boolean! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -142848,12 +148427,15 @@ type IntercomAdmin implements IntercomAuthor { Conversation are how you can communicate with users in Intercom. """ - conversations( - displayAsPlaintext: Boolean - open: Boolean - sortByField: IntercomConversationSortByField - orderBy: IntercomSortOrderBy - ): IntercomConversationsConnection + conversations(""" + When true, retrieves conversation messages in plain text. Defaults to false. + """ displayAsPlaintext: Boolean, """ + Defaults to true. When true, fetches just open conversations. When false, fetches just closed conversations. + """ open: Boolean, """ + What field to sort the results by. Defaults to UPDATED_AT. + """ sortByField: IntercomConversationSortByField, """ + Return the conversations in ascending or descending order. Defaults to DESC. + """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection } """ @@ -157233,15 +162815,22 @@ type SalesforceContentBody { """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection - customFields(fields: [String!]): JSON! + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! } """ @@ -157957,8 +163546,12 @@ type SalesforceStreamingChannelShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158025,8 +163618,12 @@ type SalesforceCaseComment implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158057,8 +163654,12 @@ type SalesforceContentUserSubscription implements OneGraphNode { User ID """ subscribedToUser: SalesforceUser! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158133,8 +163734,12 @@ type SalesforceApexComponent implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158191,8 +163796,12 @@ type SalesforceMacroShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158235,8 +163844,12 @@ type SalesforceUserLogin implements OneGraphNode { Last Modified By ID """ lastModifiedBy: SalesforceUser! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158347,8 +163960,12 @@ type SalesforceApexTrigger implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158417,8 +164034,12 @@ type SalesforceAccountShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158475,8 +164096,12 @@ type SalesforceUserAppMenuCustomizationShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158647,8 +164272,12 @@ type SalesforceAppMenuItem implements OneGraphNode { Is Accessible """ isAccessible: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158705,8 +164334,12 @@ type SalesforceUserProvisioningRequestShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158765,8 +164398,12 @@ type SalesforceApexEmailNotification implements OneGraphNode { email """ email: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158817,8 +164454,12 @@ type SalesforceContactHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158869,8 +164510,12 @@ type SalesforceContentVersionHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158925,8 +164570,12 @@ type SalesforceAssignmentRule implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -158983,8 +164632,12 @@ type SalesforceFlowInterviewShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159041,8 +164694,12 @@ type SalesforceOrgDeleteRequestShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159099,8 +164756,12 @@ type SalesforceQuickTextShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159163,8 +164824,12 @@ type SalesforceLeadStatus implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159219,8 +164884,12 @@ type SalesforceOrgWideEmailAddress implements OneGraphNode { Allow All Profiles """ isAllowAllProfiles: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159259,8 +164928,12 @@ type SalesforceKnowledgeableUser implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159307,8 +164980,12 @@ type SalesforceSetupAuditTrail implements OneGraphNode { Source Namespace Prefix """ responsibleNamespacePrefix: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159383,8 +165060,12 @@ type SalesforceCspTrustedSite implements OneGraphNode { Active """ isActive: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159407,8 +165088,12 @@ type SalesforceContentTagSubscription implements OneGraphNode { User ID """ user: SalesforceUser - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159527,8 +165212,12 @@ type SalesforceBusinessHours implements OneGraphNode { Last Viewed Date """ lastViewedDate: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159567,8 +165256,12 @@ type SalesforceTopicUserEvent implements OneGraphNode { Create Date """ createdDate: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159639,8 +165332,12 @@ type SalesforceSecurityCustomBaseline implements OneGraphNode { Is Default Baseline """ isDefault: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159691,8 +165388,12 @@ type SalesforceLeadHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159755,8 +165456,12 @@ type SalesforceTaskPriority implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159795,8 +165500,12 @@ type SalesforceQueueSobject implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -159968,8 +165677,12 @@ type SalesforceAdditionalNumber implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -160057,27 +165770,41 @@ type SalesforceCallCenter implements OneGraphNode { """ Collection of Salesforce AdditionalNumber """ - additionalNumbers( - filter: SalesforceAdditionalNumberConnectionFilter - sortByCustomField: SalesforceAdditionalNumberSortByFieldEnum - sortByField: SalesforceAdditionalNumberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAdditionalNumbersConnection + additionalNumbers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAdditionalNumberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAdditionalNumberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAdditionalNumberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AdditionalNumbers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAdditionalNumbersConnection """ Collection of Salesforce User """ - users( - filter: SalesforceUserConnectionFilter - sortByCustomField: SalesforceUserSortByFieldEnum - sortByField: SalesforceUserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUsersConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + users(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Users to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUsersConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -160154,8 +165881,12 @@ type SalesforceCaseTeamMember implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -160242,8 +165973,12 @@ type SalesforceMailmergeTemplate implements OneGraphNode { Flash Injection was detected in the attachment """ securityOptionsAttachmentHasFlash: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -160278,8 +166013,12 @@ type SalesforceUserPreference implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -160330,8 +166069,12 @@ type SalesforceAccountHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -160418,8 +166161,12 @@ type SalesforceEventLogFile implements OneGraphNode { Log File """ logFile: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -160498,8 +166245,12 @@ type SalesforceEmailCapture implements OneGraphNode { Raw Message """ rawMessage: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -160582,8 +166333,12 @@ type SalesforceOpportunityStage implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -160908,16 +166663,25 @@ type SalesforceActionLinkGroupTemplate implements OneGraphNode { """ Collection of Salesforce ActionLinkTemplate """ - actionLinkTemplates( - filter: SalesforceActionLinkTemplateConnectionFilter - sortByCustomField: SalesforceActionLinkTemplateSortByFieldEnum - sortByField: SalesforceActionLinkTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceActionLinkTemplatesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + actionLinkTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceActionLinkTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceActionLinkTemplateSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceActionLinkTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ActionLinkTemplates to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceActionLinkTemplatesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161020,8 +166784,12 @@ type SalesforceActionLinkTemplate implements OneGraphNode { HTTP Headers """ headers: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161078,8 +166846,12 @@ type SalesforceContactShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161136,8 +166908,12 @@ type SalesforceUserShare implements OneGraphNode { Active """ isActive: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161365,16 +167141,25 @@ type SalesforcePackageLicense implements OneGraphNode { """ Collection of Salesforce UserPackageLicense """ - userPackageLicenses( - filter: SalesforceUserPackageLicenseConnectionFilter - sortByCustomField: SalesforceUserPackageLicenseSortByFieldEnum - sortByField: SalesforceUserPackageLicenseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserPackageLicensesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userPackageLicenses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserPackageLicenseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserPackageLicenseSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserPackageLicenseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserPackageLicenses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserPackageLicensesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161433,8 +167218,12 @@ type SalesforceUserPackageLicense implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161493,8 +167282,12 @@ type SalesforcePartnerRole implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161533,8 +167326,12 @@ type SalesforceClientBrowser implements OneGraphNode { Created Date """ createdDate: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161565,8 +167362,12 @@ type SalesforceContentWorkspaceSubscription implements OneGraphNode { Workspace ID """ contentWorkspace: SalesforceContentWorkspace! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161661,8 +167462,12 @@ type SalesforceTenantUsageEntitlement implements OneGraphNode { Setting Label """ masterLabel: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161713,8 +167518,12 @@ type SalesforceContentDocumentHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -161771,8 +167580,12 @@ type SalesforceListEmailShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162087,16 +167900,25 @@ type SalesforcePeriod implements OneGraphNode { """ Collection of Salesforce FiscalYearSettings """ - fiscalYearSettingsPlural( - filter: SalesforceFiscalYearSettingsConnectionFilter - sortByCustomField: SalesforceFiscalYearSettingsSortByFieldEnum - sortByField: SalesforceFiscalYearSettingsSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFiscalYearSettingssConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + fiscalYearSettingsPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFiscalYearSettingsConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFiscalYearSettingsSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFiscalYearSettingsSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FiscalYearSettings to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFiscalYearSettingssConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162174,16 +167996,25 @@ type SalesforceFiscalYearSettings implements OneGraphNode { """ Collection of Salesforce Period """ - periods( - filter: SalesforcePeriodConnectionFilter - sortByCustomField: SalesforcePeriodSortByFieldEnum - sortByField: SalesforcePeriodSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePeriodsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + periods(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePeriodConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePeriodSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePeriodSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Periods to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePeriodsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162240,8 +168071,12 @@ type SalesforceTodayGoalShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162304,8 +168139,12 @@ type SalesforceSolutionStatus implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162542,8 +168381,12 @@ type SalesforceCronTrigger implements OneGraphNode { Job Fired Count """ timesTriggered: Int - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162591,16 +168434,25 @@ type SalesforceCronJobDetail implements OneGraphNode { """ Collection of Salesforce CronTrigger """ - cronTriggers( - filter: SalesforceCronTriggerConnectionFilter - sortByCustomField: SalesforceCronTriggerSortByFieldEnum - sortByField: SalesforceCronTriggerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCronTriggersConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + cronTriggers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCronTriggerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCronTriggerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCronTriggerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CronTriggers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCronTriggersConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162657,8 +168509,12 @@ type SalesforceCaseShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162701,8 +168557,12 @@ type SalesforceLoginIp implements OneGraphNode { Challenge Method """ challengeMethod: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162773,8 +168633,12 @@ type SalesforceEmailDomainKey implements OneGraphNode { Private Key """ privateKey: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162821,8 +168685,12 @@ type SalesforceChatterActivity implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162873,8 +168741,12 @@ type SalesforceCaseHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -162964,16 +168836,25 @@ type SalesforceListViewChart implements OneGraphNode { """ Collection of Salesforce UserListView """ - userListViews( - filter: SalesforceUserListViewConnectionFilter - sortByCustomField: SalesforceUserListViewSortByFieldEnum - sortByField: SalesforceUserListViewSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserListViewsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userListViews(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserListViewConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserListViewSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserListViewSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserListViews to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserListViewsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163028,8 +168909,12 @@ type SalesforceCaseTeamRole implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163098,8 +168983,12 @@ type SalesforceCaseTeamTemplateMember implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163136,8 +169025,12 @@ type SalesforceGroupMember implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163188,8 +169081,12 @@ type SalesforceCaseTeamTemplate implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163236,8 +169133,12 @@ type SalesforceCaseTeamTemplateRecord implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163304,8 +169205,12 @@ type SalesforceCorsWhitelistEntry implements OneGraphNode { Origin URL Pattern """ urlPattern: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163362,8 +169267,12 @@ type SalesforceLeadShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163643,16 +169552,25 @@ type SalesforcePlatformCachePartition implements OneGraphNode { """ Collection of Salesforce PlatformCachePartitionType """ - platforCachePartitionTypes( - filter: SalesforcePlatformCachePartitionTypeConnectionFilter - sortByCustomField: SalesforcePlatformCachePartitionTypeSortByFieldEnum - sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePlatformCachePartitionTypesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + platforCachePartitionTypes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePlatformCachePartitionTypeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePlatformCachePartitionTypeSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PlatformCachePartitionTypes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePlatformCachePartitionTypesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163723,8 +169641,12 @@ type SalesforcePlatformCachePartitionType implements OneGraphNode { Allocated Trial Capacity """ allocatedTrialCapacity: Int - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163787,8 +169709,12 @@ type SalesforceContractStatus implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163851,8 +169777,12 @@ type SalesforceCaseStatus implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -163955,8 +169885,12 @@ type SalesforceHoliday implements OneGraphNode { Recurrence Month of Year """ recurrenceMonthOfYear: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164272,16 +170206,25 @@ type SalesforceMatchingRule implements OneGraphNode { """ Collection of Salesforce MatchingRuleItem """ - matchingRuleItems( - filter: SalesforceMatchingRuleItemConnectionFilter - sortByCustomField: SalesforceMatchingRuleItemSortByFieldEnum - sortByField: SalesforceMatchingRuleItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMatchingRuleItemsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + matchingRuleItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMatchingRuleItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceMatchingRuleItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMatchingRuleItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of MatchingRuleItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMatchingRuleItemsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164352,8 +170295,12 @@ type SalesforceMatchingRuleItem implements OneGraphNode { Blank Value Behavior """ blankValueBehavior: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164416,8 +170363,12 @@ type SalesforceTaskStatus implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -164575,8 +170526,12 @@ type SalesforceSecureAgentPluginProperty implements OneGraphNode { Property Value """ propertyValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165017,16 +170972,25 @@ type SalesforceSecureAgentsCluster implements OneGraphNode { """ Collection of Salesforce SecureAgent """ - secureAgents( - filter: SalesforceSecureAgentConnectionFilter - sortByCustomField: SalesforceSecureAgentSortByFieldEnum - sortByField: SalesforceSecureAgentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSecureAgentsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + secureAgents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSecureAgentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSecureAgentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSecureAgentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SecureAgents to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSecureAgentsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165112,16 +171076,25 @@ type SalesforceSecureAgent implements OneGraphNode { """ Collection of Salesforce SecureAgentPlugin """ - secureAgentPlugins( - filter: SalesforceSecureAgentPluginConnectionFilter - sortByCustomField: SalesforceSecureAgentPluginSortByFieldEnum - sortByField: SalesforceSecureAgentPluginSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSecureAgentPluginsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + secureAgentPlugins(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSecureAgentPluginConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSecureAgentPluginSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSecureAgentPluginSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SecureAgentPlugins to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSecureAgentPluginsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165199,16 +171172,25 @@ type SalesforceSecureAgentPlugin implements OneGraphNode { """ Collection of Salesforce SecureAgentPluginProperty """ - secureAgentPluginProperties( - filter: SalesforceSecureAgentPluginPropertyConnectionFilter - sortByCustomField: SalesforceSecureAgentPluginPropertySortByFieldEnum - sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSecureAgentPluginPropertysConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + secureAgentPluginProperties(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSecureAgentPluginPropertyConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSecureAgentPluginPropertySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SecureAgentPluginProperties to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSecureAgentPluginPropertysConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165461,8 +171443,12 @@ type SalesforceLightningComponentResource implements OneGraphNode { Source """ source: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165566,16 +171552,25 @@ type SalesforceLightningComponentBundle implements OneGraphNode { """ Collection of Salesforce LightningComponentResource """ - lightningComponentResources( - filter: SalesforceLightningComponentResourceConnectionFilter - sortByCustomField: SalesforceLightningComponentResourceSortByFieldEnum - sortByField: SalesforceLightningComponentResourceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLightningComponentResourcesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + lightningComponentResources(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLightningComponentResourceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLightningComponentResourceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLightningComponentResourceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LightningComponentResources to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLightningComponentResourcesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -165761,8 +171756,12 @@ type SalesforceChatterExtensionConfig implements OneGraphNode { Position """ position: Int - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -166671,8 +172670,12 @@ type SalesforceSolutionHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167117,27 +173120,41 @@ type SalesforceCategoryNode implements OneGraphNode { """ Collection of Salesforce CategoryData """ - categoryDatas( - filter: SalesforceCategoryDataConnectionFilter - sortByCustomField: SalesforceCategoryDataSortByFieldEnum - sortByField: SalesforceCategoryDataSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCategoryDatasConnection + categoryDatas(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCategoryDataConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCategoryDataSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCategoryDataSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CategoryDatas to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCategoryDatasConnection """ Collection of Salesforce CategoryNode """ - categoryNodes( - filter: SalesforceCategoryNodeConnectionFilter - sortByCustomField: SalesforceCategoryNodeSortByFieldEnum - sortByField: SalesforceCategoryNodeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCategoryNodesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + categoryNodes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCategoryNodeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCategoryNodeSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCategoryNodeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CategoryNodes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCategoryNodesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167200,8 +173217,12 @@ type SalesforceCategoryData implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167575,8 +173596,12 @@ type SalesforceProduct2History implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -167869,16 +173894,25 @@ type SalesforceStaticResource implements OneGraphNode { """ Collection of Salesforce ExternalDataSource """ - externalDataSources( - filter: SalesforceExternalDataSourceConnectionFilter - sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum - sortByField: SalesforceExternalDataSourceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceExternalDataSourcesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + externalDataSources(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceExternalDataSourceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceExternalDataSourceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceExternalDataSourcesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168180,8 +174214,12 @@ type SalesforceTransactionSecurityPolicy implements OneGraphNode { Description """ description: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168414,16 +174452,25 @@ type SalesforceApexTestSuite implements OneGraphNode { """ Collection of Salesforce TestSuiteMembership """ - apexClassJunctions( - filter: SalesforceTestSuiteMembershipConnectionFilter - sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum - sortByField: SalesforceTestSuiteMembershipSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTestSuiteMembershipsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + apexClassJunctions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTestSuiteMembershipConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TestSuiteMemberships to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTestSuiteMembershipsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -168486,8 +174533,12 @@ type SalesforceTestSuiteMembership implements OneGraphNode { Class ID """ apexClass: SalesforceApexClass! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169142,8 +175193,12 @@ type SalesforceEmailServicesAddress implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169275,16 +175330,25 @@ type SalesforceEmailServicesFunction implements OneGraphNode { """ Collection of Salesforce EmailServicesAddress """ - addresses( - filter: SalesforceEmailServicesAddressConnectionFilter - sortByCustomField: SalesforceEmailServicesAddressSortByFieldEnum - sortByField: SalesforceEmailServicesAddressSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailServicesAddresssConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + addresses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailServicesAddressConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailServicesAddressSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailServicesAddressSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailServicesAddresses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailServicesAddresssConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169872,16 +175936,25 @@ type SalesforceAccountCleanInfo implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -169955,16 +176028,25 @@ type SalesforceAccountContactRole implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -170296,27 +176378,41 @@ type SalesforceBackgroundOperation implements OneGraphNode { """ Collection of Salesforce BackgroundOperation """ - mergedOperations( - filter: SalesforceBackgroundOperationConnectionFilter - sortByCustomField: SalesforceBackgroundOperationSortByFieldEnum - sortByField: SalesforceBackgroundOperationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceBackgroundOperationsConnection + mergedOperations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceBackgroundOperationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceBackgroundOperationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceBackgroundOperationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of BackgroundOperations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceBackgroundOperationsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -170386,16 +176482,25 @@ type SalesforceCaseContactRole implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -170449,16 +176554,25 @@ type SalesforceCaseSolution implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -170700,16 +176814,25 @@ type SalesforceContactCleanInfo implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -170751,16 +176874,25 @@ type SalesforceContentDocumentSubscription implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -171053,16 +177185,25 @@ type SalesforceContentFolderLink implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -171274,8 +177415,12 @@ type SalesforceContentFolderItem implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -171410,71 +177555,105 @@ type SalesforceContentFolder implements OneGraphNode { """ Collection of Salesforce ContentFolder """ - contentFolders( - filter: SalesforceContentFolderConnectionFilter - sortByCustomField: SalesforceContentFolderSortByFieldEnum - sortByField: SalesforceContentFolderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentFoldersConnection + contentFolders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentFolderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentFolderSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentFolderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentFolders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentFoldersConnection """ Collection of Salesforce ContentFolderItem """ - contentFolderItems( - filter: SalesforceContentFolderItemConnectionFilter - sortByCustomField: SalesforceContentFolderItemSortByFieldEnum - sortByField: SalesforceContentFolderItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentFolderItemsConnection + contentFolderItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentFolderItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentFolderItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentFolderItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentFolderItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentFolderItemsConnection """ Collection of Salesforce ContentFolderLink """ - contentFolderLinks( - filter: SalesforceContentFolderLinkConnectionFilter - sortByCustomField: SalesforceContentFolderLinkSortByFieldEnum - sortByField: SalesforceContentFolderLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentFolderLinksConnection + contentFolderLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentFolderLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentFolderLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentFolderLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentFolderLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentFolderLinksConnection """ Collection of Salesforce ContentFolderMember """ - contentFolderMembers( - filter: SalesforceContentFolderMemberConnectionFilter - sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum - sortByField: SalesforceContentFolderMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentFolderMembersConnection + contentFolderMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentFolderMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentFolderMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentFolderMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentFolderMembersConnection """ Collection of Salesforce ContentWorkspace """ - contentWorkspaces( - filter: SalesforceContentWorkspaceConnectionFilter - sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum - sortByField: SalesforceContentWorkspaceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspacesConnection + contentWorkspaces(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentWorkspaces to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspacesConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -171540,16 +177719,25 @@ type SalesforceContentFolderMember implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -171805,8 +177993,12 @@ type SalesforceContentWorkspaceMember implements OneGraphNode { Created Date """ createdDate: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -172042,27 +178234,41 @@ type SalesforceContentWorkspacePermission implements OneGraphNode { """ Collection of Salesforce ContentNotification """ - contentNotifications( - filter: SalesforceContentNotificationConnectionFilter - sortByCustomField: SalesforceContentNotificationSortByFieldEnum - sortByField: SalesforceContentNotificationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentNotificationsConnection + contentNotifications(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentNotificationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentNotificationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentNotificationsConnection """ Collection of Salesforce ContentWorkspaceMember """ - contentWorkspaceMembers( - filter: SalesforceContentWorkspaceMemberConnectionFilter - sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum - sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspaceMembersConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + contentWorkspaceMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspaceMembersConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -172118,16 +178324,25 @@ type SalesforceContentNotification implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -172169,16 +178384,25 @@ type SalesforceContentVersionComment implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -172224,16 +178448,25 @@ type SalesforceContentVersionRating implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -172283,16 +178516,25 @@ type SalesforceContentWorkspaceDoc implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -172887,38 +179129,57 @@ type SalesforceDandBCompany implements OneGraphNode { """ Collection of Salesforce Account """ - accounts( - filter: SalesforceAccountConnectionFilter - sortByCustomField: SalesforceAccountSortByFieldEnum - sortByField: SalesforceAccountSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountsConnection + accounts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Accounts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Lead """ - leads( - filter: SalesforceLeadConnectionFilter - sortByCustomField: SalesforceLeadSortByFieldEnum - sortByField: SalesforceLeadSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + leads(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Leads to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -173347,27 +179608,41 @@ type SalesforceDataAssessmentMetric implements OneGraphNode { """ Collection of Salesforce DataAssessmentFieldMetric """ - dataAssessmentMetrics( - filter: SalesforceDataAssessmentFieldMetricConnectionFilter - sortByCustomField: SalesforceDataAssessmentFieldMetricSortByFieldEnum - sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDataAssessmentFieldMetricsConnection + dataAssessmentMetrics(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDataAssessmentFieldMetricConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDataAssessmentFieldMetricSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DataAssessmentFieldMetrics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDataAssessmentFieldMetricsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -173449,27 +179724,41 @@ type SalesforceDataAssessmentFieldMetric implements OneGraphNode { """ Collection of Salesforce DataAssessmentValueMetric """ - dataAssessmentValueMetrics( - filter: SalesforceDataAssessmentValueMetricConnectionFilter - sortByCustomField: SalesforceDataAssessmentValueMetricSortByFieldEnum - sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDataAssessmentValueMetricsConnection + dataAssessmentValueMetrics(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDataAssessmentValueMetricConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDataAssessmentValueMetricSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DataAssessmentValueMetrics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDataAssessmentValueMetricsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -173539,16 +179828,25 @@ type SalesforceDataAssessmentValueMetric implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -173835,16 +180133,25 @@ type SalesforceDatacloudOwnedEntity implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -173948,27 +180255,41 @@ type SalesforceDatacloudPurchaseUsage implements OneGraphNode { """ Collection of Salesforce DatacloudOwnedEntity """ - datacloudOwnedEntities( - filter: SalesforceDatacloudOwnedEntityConnectionFilter - sortByCustomField: SalesforceDatacloudOwnedEntitySortByFieldEnum - sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDatacloudOwnedEntitysConnection + datacloudOwnedEntities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDatacloudOwnedEntityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDatacloudOwnedEntitySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DatacloudOwnedEntities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDatacloudOwnedEntitysConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -174054,16 +180375,25 @@ type SalesforceFileSearchActivity implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -174248,8 +180578,12 @@ type SalesforceVote implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -174349,27 +180683,41 @@ type SalesforceIdeaComment implements OneGraphNode { """ Collection of Salesforce Idea """ - ideas( - filter: SalesforceIdeaConnectionFilter - sortByCustomField: SalesforceIdeaSortByFieldEnum - sortByField: SalesforceIdeaSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceIdeasConnection + ideas(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceIdeaConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceIdeaSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceIdeaSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Ideas to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceIdeasConnection """ Collection of Salesforce Vote """ - votes( - filter: SalesforceVoteConnectionFilter - sortByCustomField: SalesforceVoteSortByFieldEnum - sortByField: SalesforceVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + votes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Votes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -174805,27 +181153,41 @@ type SalesforceCommunity implements OneGraphNode { """ Collection of Salesforce Idea """ - ideas( - filter: SalesforceIdeaConnectionFilter - sortByCustomField: SalesforceIdeaSortByFieldEnum - sortByField: SalesforceIdeaSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceIdeasConnection + ideas(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceIdeaConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceIdeaSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceIdeaSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Ideas to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceIdeasConnection """ Collection of Salesforce IdeaComment """ - ideaComments( - filter: SalesforceIdeaCommentConnectionFilter - sortByCustomField: SalesforceIdeaCommentSortByFieldEnum - sortByField: SalesforceIdeaCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceIdeaCommentsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + ideaComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceIdeaCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceIdeaCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceIdeaCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of IdeaComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceIdeaCommentsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -174967,49 +181329,73 @@ type SalesforceIdea implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Idea """ - ideas( - filter: SalesforceIdeaConnectionFilter - sortByCustomField: SalesforceIdeaSortByFieldEnum - sortByField: SalesforceIdeaSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceIdeasConnection + ideas(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceIdeaConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceIdeaSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceIdeaSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Ideas to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceIdeasConnection """ Collection of Salesforce IdeaComment """ - comments( - filter: SalesforceIdeaCommentConnectionFilter - sortByCustomField: SalesforceIdeaCommentSortByFieldEnum - sortByField: SalesforceIdeaCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceIdeaCommentsConnection + comments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceIdeaCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceIdeaCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceIdeaCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of IdeaComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceIdeaCommentsConnection """ Collection of Salesforce Vote """ - votes( - filter: SalesforceVoteConnectionFilter - sortByCustomField: SalesforceVoteSortByFieldEnum - sortByField: SalesforceVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + votes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Votes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -175347,16 +181733,25 @@ type SalesforceLeadCleanInfo implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -175709,8 +182104,12 @@ type SalesforceMacroHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -175820,38 +182219,57 @@ type SalesforceMacro implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce MacroHistory """ - histories( - filter: SalesforceMacroHistoryConnectionFilter - sortByCustomField: SalesforceMacroHistorySortByFieldEnum - sortByField: SalesforceMacroHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMacroHistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMacroHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceMacroHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMacroHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of MacroHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMacroHistorysConnection """ Collection of Salesforce MacroInstruction """ - macroInstructions( - filter: SalesforceMacroInstructionConnectionFilter - sortByCustomField: SalesforceMacroInstructionSortByFieldEnum - sortByField: SalesforceMacroInstructionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMacroInstructionsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + macroInstructions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMacroInstructionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceMacroInstructionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMacroInstructionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of MacroInstructions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMacroInstructionsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -175933,16 +182351,25 @@ type SalesforceMacroInstruction implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -176036,16 +182463,25 @@ type SalesforcePushTopic implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -176248,8 +182684,12 @@ type SalesforceQuickTextHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -176355,27 +182795,41 @@ type SalesforceQuickText implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce QuickTextHistory """ - histories( - filter: SalesforceQuickTextHistoryConnectionFilter - sortByCustomField: SalesforceQuickTextHistorySortByFieldEnum - sortByField: SalesforceQuickTextHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceQuickTextHistorysConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceQuickTextHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceQuickTextHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceQuickTextHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of QuickTextHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceQuickTextHistorysConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -176469,16 +182923,25 @@ type SalesforceSearchActivity implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -176532,16 +182995,25 @@ type SalesforceSearchPromotionRule implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -176617,16 +183089,25 @@ type SalesforceTodayGoal implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -176688,16 +183169,25 @@ type SalesforceUserAppInfo implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -176771,16 +183261,25 @@ type SalesforceUserProvMockTarget implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -176985,16 +183484,25 @@ type SalesforceUserProvisioningLog implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -177206,8 +183714,12 @@ type SalesforceProcessInstanceWorkitem implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -177401,27 +183913,41 @@ type SalesforceDuplicateRecordItem implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -177743,16 +184269,25 @@ type SalesforceDuplicateRule implements OneGraphNode { """ Collection of Salesforce DuplicateRecordSet """ - duplicateRecordSets( - filter: SalesforceDuplicateRecordSetConnectionFilter - sortByCustomField: SalesforceDuplicateRecordSetSortByFieldEnum - sortByField: SalesforceDuplicateRecordSetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDuplicateRecordSetsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + duplicateRecordSets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDuplicateRecordSetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDuplicateRecordSetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDuplicateRecordSetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DuplicateRecordSets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDuplicateRecordSetsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -177826,38 +184361,57 @@ type SalesforceDuplicateRecordSet implements OneGraphNode { """ Collection of Salesforce DuplicateRecordItem """ - duplicateRecordItems( - filter: SalesforceDuplicateRecordItemConnectionFilter - sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum - sortByField: SalesforceDuplicateRecordItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDuplicateRecordItemsConnection + duplicateRecordItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDuplicateRecordItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDuplicateRecordItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -178000,8 +184554,12 @@ type SalesforceOrderShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -178152,8 +184710,12 @@ type SalesforceOrderHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -178440,8 +185002,12 @@ type SalesforceContractHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -178782,16 +185348,25 @@ type SalesforceContractContactRole implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -178998,8 +185573,12 @@ type SalesforcePricebook2History implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -179344,27 +185923,41 @@ type SalesforcePartner implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Partner """ - partners( - filter: SalesforcePartnerConnectionFilter - sortByCustomField: SalesforcePartnerSortByFieldEnum - sortByField: SalesforcePartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePartnersConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + partners(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePartnerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Partners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePartnersConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -179529,8 +186122,12 @@ type SalesforceOpportunityShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -179752,16 +186349,25 @@ type SalesforceOpportunityPartner implements OneGraphNode { """ Collection of Salesforce OpportunityPartner """ - opportunityPartners( - filter: SalesforceOpportunityPartnerConnectionFilter - sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum - sortByField: SalesforceOpportunityPartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityPartnersConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + opportunityPartners(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityPartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityPartnersConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -179956,8 +186562,12 @@ type SalesforceOpportunityHistory implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -180108,8 +186718,12 @@ type SalesforceOpportunityFieldHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -180450,16 +187064,25 @@ type SalesforceOpportunityContactRole implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -180649,8 +187272,12 @@ type SalesforceOpportunityCompetitor implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -180982,16 +187609,25 @@ type SalesforceAccountPartner implements OneGraphNode { """ Collection of Salesforce AccountPartner """ - accountPartners( - filter: SalesforceAccountPartnerConnectionFilter - sortByCustomField: SalesforceAccountPartnerSortByFieldEnum - sortByField: SalesforceAccountPartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountPartnersConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + accountPartners(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountPartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountPartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountPartnersConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -181195,8 +187831,12 @@ type SalesforceCampaignShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -181399,8 +188039,12 @@ type SalesforceCampaignMemberStatus implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -182095,16 +188739,25 @@ type SalesforceCampaignMember implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -182255,8 +188908,12 @@ type SalesforceCampaignHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -182577,8 +189234,12 @@ type SalesforceSiteHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -182912,16 +189573,25 @@ type SalesforceFeedRevision implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -183072,8 +189742,12 @@ type SalesforceOrderItemHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -183303,49 +189977,73 @@ type SalesforceAccountFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -183439,49 +190137,73 @@ type SalesforceCaseFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -183575,49 +190297,73 @@ type SalesforceContactFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -183711,49 +190457,73 @@ type SalesforceContentDocumentFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -183847,49 +190617,73 @@ type SalesforceContractFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -183983,49 +190777,73 @@ type SalesforceDashboardComponentFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -184119,49 +190937,73 @@ type SalesforceDashboardFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -184348,8 +191190,12 @@ type SalesforceUndecidedEventRelation implements OneGraphNode { Type """ type: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -184561,16 +191407,25 @@ type SalesforceEventRelation implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -184915,8 +191770,12 @@ type SalesforceDeclinedEventRelation implements OneGraphNode { Type """ type: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -185125,8 +191984,12 @@ type SalesforceAcceptedEventRelation implements OneGraphNode { Type """ type: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -185277,8 +192140,12 @@ type SalesforceAssetRelationshipHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -185508,49 +192375,73 @@ type SalesforceAssetRelationshipFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -185785,16 +192676,25 @@ type SalesforceTopicAssignment implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -186080,16 +192980,25 @@ type SalesforceNote implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -186560,16 +193469,25 @@ type SalesforceEmailMessageRelation implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -187118,16 +194036,25 @@ type SalesforceContentDistributionView implements OneGraphNode { """ Collection of Salesforce ContentDistributionView """ - contentDistributionViews( - filter: SalesforceContentDistributionViewConnectionFilter - sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum - sortByField: SalesforceContentDistributionViewSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionViewsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + contentDistributionViews(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionViewConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionViewSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDistributionViews to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionViewsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -187227,26 +194154,38 @@ type SalesforceOutgoingEmail { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection - customFields(fields: [String!]): JSON! + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! } union SalesforceContentVersionFirstPublishLocationUnion = SalesforceUser | SalesforceTopic | SalesforceTask | SalesforceSolution | SalesforceSite | SalesforceReport | SalesforceProduct2 | SalesforceOutgoingEmail | SalesforceOrganization | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunity | SalesforceListEmail | SalesforceLead | SalesforceEvent | SalesforceEmailTemplate | SalesforceEmailMessage | SalesforceDashboardComponent | SalesforceDashboard | SalesforceContract | SalesforceContentWorkspace | SalesforceContact | SalesforceCollaborationGroup | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount @@ -187453,27 +194392,41 @@ type SalesforceCollaborationInvitation implements OneGraphNode { """ Collection of Salesforce CollaborationInvitation """ - collaborationInvitations( - filter: SalesforceCollaborationInvitationConnectionFilter - sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum - sortByField: SalesforceCollaborationInvitationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationInvitationsConnection + collaborationInvitations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationInvitationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationInvitations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationInvitationsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -187658,16 +194611,25 @@ type SalesforceCollaborationGroupRecord implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -187863,16 +194825,25 @@ type SalesforceCollaborationGroupMemberRequest implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -188077,16 +195048,25 @@ type SalesforceCollaborationGroupMember implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -188316,49 +195296,73 @@ type SalesforceCollaborationGroupFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -188796,27 +195800,41 @@ type SalesforceAnnouncement implements OneGraphNode { """ Collection of Salesforce CollaborationGroup """ - collaborationGroups( - filter: SalesforceCollaborationGroupConnectionFilter - sortByCustomField: SalesforceCollaborationGroupSortByFieldEnum - sortByField: SalesforceCollaborationGroupSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupsConnection + collaborationGroups(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroups to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -188954,137 +195972,201 @@ type SalesforceCollaborationGroup implements OneGraphNode { """ Collection of Salesforce Announcement """ - announcements( - filter: SalesforceAnnouncementConnectionFilter - sortByCustomField: SalesforceAnnouncementSortByFieldEnum - sortByField: SalesforceAnnouncementSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAnnouncementsConnection + announcements(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAnnouncementConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAnnouncementSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAnnouncementSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Announcements to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAnnouncementsConnection """ Collection of Salesforce CollaborationGroupFeed """ - feeds( - filter: SalesforceCollaborationGroupFeedConnectionFilter - sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum - sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupFeedsConnection """ Collection of Salesforce CollaborationGroupMember """ - groupMembers( - filter: SalesforceCollaborationGroupMemberConnectionFilter - sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum - sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupMembersConnection + groupMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupMembersConnection """ Collection of Salesforce CollaborationGroupMemberRequest """ - groupMemberRequests( - filter: SalesforceCollaborationGroupMemberRequestConnectionFilter - sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum - sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupMemberRequestsConnection + groupMemberRequests(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupMemberRequests to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupMemberRequestsConnection """ Collection of Salesforce CollaborationGroupRecord """ - collaborationGroupRecords( - filter: SalesforceCollaborationGroupRecordConnectionFilter - sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum - sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupRecordsConnection + collaborationGroupRecords(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce CollaborationInvitation """ - collaborationInvitations( - filter: SalesforceCollaborationInvitationConnectionFilter - sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum - sortByField: SalesforceCollaborationInvitationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationInvitationsConnection + collaborationInvitations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationInvitationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationInvitations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationInvitationsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -189335,8 +196417,12 @@ type SalesforceDocumentAttachmentMap implements OneGraphNode { Created By ID """ createdBy: SalesforceUser! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -189685,16 +196771,25 @@ type SalesforceBrandTemplate implements OneGraphNode { """ Collection of Salesforce EmailTemplate """ - emailTemplates( - filter: SalesforceEmailTemplateConnectionFilter - sortByCustomField: SalesforceEmailTemplateSortByFieldEnum - sortByField: SalesforceEmailTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailTemplatesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + emailTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailTemplatesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -189834,49 +196929,73 @@ type SalesforceEmailTemplate implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce DocumentAttachmentMap """ - documentAttachmentMaps( - filter: SalesforceDocumentAttachmentMapConnectionFilter - sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum - sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDocumentAttachmentMapsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + documentAttachmentMaps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDocumentAttachmentMapConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DocumentAttachmentMaps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDocumentAttachmentMapsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -190182,8 +197301,12 @@ type SalesforceUserListViewCriterion implements OneGraphNode { Value """ value: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -190279,16 +197402,25 @@ type SalesforceUserListView implements OneGraphNode { """ Collection of Salesforce UserListViewCriterion """ - userListViewCriterions( - filter: SalesforceUserListViewCriterionConnectionFilter - sortByCustomField: SalesforceUserListViewCriterionSortByFieldEnum - sortByField: SalesforceUserListViewCriterionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserListViewCriterionsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userListViewCriterions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserListViewCriterionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserListViewCriterionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserListViewCriterionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserListViewCriterions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserListViewCriterionsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -190655,27 +197787,41 @@ type SalesforceListView implements OneGraphNode { """ Collection of Salesforce ListEmailRecipientSource """ - listEmailRecipientSources( - filter: SalesforceListEmailRecipientSourceConnectionFilter - sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum - sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceListEmailRecipientSourcesConnection + listEmailRecipientSources(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceListEmailRecipientSourceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ListEmailRecipientSources to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceListEmailRecipientSourcesConnection """ Collection of Salesforce UserListView """ - userListViews( - filter: SalesforceUserListViewConnectionFilter - sortByCustomField: SalesforceUserListViewSortByFieldEnum - sortByField: SalesforceUserListViewSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserListViewsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userListViews(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserListViewConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserListViewSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserListViewSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserListViews to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserListViewsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -190749,16 +197895,25 @@ type SalesforceListEmailRecipientSource implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -191048,60 +198203,89 @@ type SalesforceListEmail implements OneGraphNode { """ Collection of Salesforce ContentDistribution """ - contentDistributions( - filter: SalesforceContentDistributionConnectionFilter - sortByCustomField: SalesforceContentDistributionSortByFieldEnum - sortByField: SalesforceContentDistributionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionsConnection + contentDistributions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ListEmailRecipientSource """ - listEmailRecipientSources( - filter: SalesforceListEmailRecipientSourceConnectionFilter - sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum - sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceListEmailRecipientSourcesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + listEmailRecipientSources(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceListEmailRecipientSourceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ListEmailRecipientSources to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceListEmailRecipientSourcesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -191253,27 +198437,41 @@ type SalesforceContentDistribution implements OneGraphNode { """ Collection of Salesforce ContentDistributionView """ - contentDistributionViews( - filter: SalesforceContentDistributionViewConnectionFilter - sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum - sortByField: SalesforceContentDistributionViewSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionViewsConnection + contentDistributionViews(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionViewConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionViewSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDistributionViews to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionViewsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -191451,93 +198649,137 @@ type SalesforceEmailMessage implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions( - filter: SalesforceContentDistributionConnectionFilter - sortByCustomField: SalesforceContentDistributionSortByFieldEnum - sortByField: SalesforceContentDistributionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionsConnection + contentDistributions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emailMessages( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: SalesforceEmailMessageSortByFieldEnum - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emailMessages(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce EmailMessageRelation """ - emailMessageRelations( - filter: SalesforceEmailMessageRelationConnectionFilter - sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum - sortByField: SalesforceEmailMessageRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessageRelationsConnection + emailMessageRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessageRelationsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -191946,8 +199188,12 @@ type SalesforceAssetShare implements OneGraphNode { Deleted """ isDeleted: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -192249,8 +199495,12 @@ type SalesforceAssetHistory implements OneGraphNode { New Value """ newValue: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -192480,49 +199730,73 @@ type SalesforceAssetFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -192972,236 +200246,345 @@ type SalesforceAsset implements OneGraphNode { """ Collection of Salesforce Asset """ - childAssets( - filter: SalesforceAssetConnectionFilter - sortByCustomField: SalesforceAssetSortByFieldEnum - sortByField: SalesforceAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetsConnection + childAssets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Assets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetsConnection """ Collection of Salesforce Asset """ - assets( - filter: SalesforceAssetConnectionFilter - sortByCustomField: SalesforceAssetSortByFieldEnum - sortByField: SalesforceAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetsConnection + assets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Assets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetsConnection """ Collection of Salesforce AssetFeed """ - feeds( - filter: SalesforceAssetFeedConnectionFilter - sortByCustomField: SalesforceAssetFeedSortByFieldEnum - sortByField: SalesforceAssetFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetFeedsConnection """ Collection of Salesforce AssetHistory """ - histories( - filter: SalesforceAssetHistoryConnectionFilter - sortByCustomField: SalesforceAssetHistorySortByFieldEnum - sortByField: SalesforceAssetHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetHistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetHistorysConnection """ Collection of Salesforce AssetRelationship """ - primaryAssets( - filter: SalesforceAssetRelationshipConnectionFilter - sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum - sortByField: SalesforceAssetRelationshipSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetRelationshipsConnection + primaryAssets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetRelationshipConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetRelationshipSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetRelationships to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetRelationshipsConnection """ Collection of Salesforce AssetRelationship """ - relatedAssets( - filter: SalesforceAssetRelationshipConnectionFilter - sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum - sortByField: SalesforceAssetRelationshipSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetRelationshipsConnection + relatedAssets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetRelationshipConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetRelationshipSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetRelationships to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetRelationshipsConnection """ Collection of Salesforce AssetShare """ - shares( - filter: SalesforceAssetShareConnectionFilter - sortByCustomField: SalesforceAssetShareSortByFieldEnum - sortByField: SalesforceAssetShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetSharesConnection + shares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetSharesConnection """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce Case """ - cases( - filter: SalesforceCaseConnectionFilter - sortByCustomField: SalesforceCaseSortByFieldEnum - sortByField: SalesforceCaseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCasesConnection + cases(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Cases to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCasesConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emails( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: SalesforceEmailMessageSortByFieldEnum - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events( - filter: SalesforceEventConnectionFilter - sortByCustomField: SalesforceEventSortByFieldEnum - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + events(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Note """ - notes( - filter: SalesforceNoteConnectionFilter - sortByCustomField: SalesforceNoteSortByFieldEnum - sortByField: SalesforceNoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceNotesConnection + notes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceNoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceNoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Notes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceNotesConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: SalesforceTaskSortByFieldEnum - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection + tasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -193291,137 +200674,201 @@ type SalesforceAssetRelationship implements OneGraphNode { """ Collection of Salesforce AssetRelationshipFeed """ - feeds( - filter: SalesforceAssetRelationshipFeedConnectionFilter - sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum - sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetRelationshipFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetRelationshipFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetRelationshipFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetRelationshipFeedsConnection """ Collection of Salesforce AssetRelationshipHistory """ - histories( - filter: SalesforceAssetRelationshipHistoryConnectionFilter - sortByCustomField: SalesforceAssetRelationshipHistorySortByFieldEnum - sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetRelationshipHistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetRelationshipHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetRelationshipHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetRelationshipHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetRelationshipHistorysConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emails( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: SalesforceEmailMessageSortByFieldEnum - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events( - filter: SalesforceEventConnectionFilter - sortByCustomField: SalesforceEventSortByFieldEnum - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + events(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: SalesforceTaskSortByFieldEnum - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + tasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -193627,159 +201074,233 @@ type SalesforceEvent implements OneGraphNode { """ Collection of Salesforce AcceptedEventRelation """ - acceptedEventRelations( - filter: SalesforceAcceptedEventRelationConnectionFilter - sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum - sortByField: SalesforceAcceptedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAcceptedEventRelationsConnection + acceptedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAcceptedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAcceptedEventRelationsConnection """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce DeclinedEventRelation """ - declinedEventRelations( - filter: SalesforceDeclinedEventRelationConnectionFilter - sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum - sortByField: SalesforceDeclinedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDeclinedEventRelationsConnection + declinedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDeclinedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDeclinedEventRelationsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - recurringEvents( - filter: SalesforceEventConnectionFilter - sortByCustomField: SalesforceEventSortByFieldEnum - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + recurringEvents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce EventFeed """ - feeds( - filter: SalesforceEventFeedConnectionFilter - sortByCustomField: SalesforceEventFeedSortByFieldEnum - sortByField: SalesforceEventFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EventFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventFeedsConnection """ Collection of Salesforce EventRelation """ - eventRelations( - filter: SalesforceEventRelationConnectionFilter - sortByCustomField: SalesforceEventRelationSortByFieldEnum - sortByField: SalesforceEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventRelationsConnection + eventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventRelationsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection """ Collection of Salesforce UndecidedEventRelation """ - undecidedEventRelations( - filter: SalesforceUndecidedEventRelationConnectionFilter - sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum - sortByField: SalesforceUndecidedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUndecidedEventRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + undecidedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUndecidedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUndecidedEventRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -193873,49 +201394,73 @@ type SalesforceEventFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -194009,49 +201554,73 @@ type SalesforceLeadFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -194145,49 +201714,73 @@ type SalesforceOpportunityFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -194283,49 +201876,73 @@ type SalesforceOrderFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -194421,49 +202038,73 @@ type SalesforceProduct2Feed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -194559,49 +202200,73 @@ type SalesforceReportFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -194697,49 +202362,73 @@ type SalesforceOrderItemFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -195993,16 +203682,25 @@ type SalesforceOpportunityLineItem implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -196110,38 +203808,57 @@ type SalesforcePricebookEntry implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce OpportunityLineItem """ - opportunityLineItems( - filter: SalesforceOpportunityLineItemConnectionFilter - sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum - sortByField: SalesforceOpportunityLineItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityLineItemsConnection + opportunityLineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityLineItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityLineItemsConnection """ Collection of Salesforce OrderItem """ - orderItems( - filter: SalesforceOrderItemConnectionFilter - sortByCustomField: SalesforceOrderItemSortByFieldEnum - sortByField: SalesforceOrderItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderItemsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + orderItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderItemsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -196259,104 +203976,153 @@ type SalesforceOrderItem implements OneGraphNode { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce OrderItem """ - childOrderItems( - filter: SalesforceOrderItemConnectionFilter - sortByCustomField: SalesforceOrderItemSortByFieldEnum - sortByField: SalesforceOrderItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderItemsConnection + childOrderItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderItemsConnection """ Collection of Salesforce OrderItemFeed """ - feeds( - filter: SalesforceOrderItemFeedConnectionFilter - sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum - sortByField: SalesforceOrderItemFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderItemFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderItemFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderItemFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderItemFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderItemFeedsConnection """ Collection of Salesforce OrderItemHistory """ - histories( - filter: SalesforceOrderItemHistoryConnectionFilter - sortByCustomField: SalesforceOrderItemHistorySortByFieldEnum - sortByField: SalesforceOrderItemHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderItemHistorysConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderItemHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderItemHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderItemHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderItemHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderItemHistorysConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -196500,93 +204266,137 @@ type SalesforceFeedItem implements OneGraphNode { """ Collection of Salesforce Announcement """ - announcements( - filter: SalesforceAnnouncementConnectionFilter - sortByCustomField: SalesforceAnnouncementSortByFieldEnum - sortByField: SalesforceAnnouncementSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAnnouncementsConnection + announcements(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAnnouncementConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAnnouncementSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAnnouncementSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Announcements to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAnnouncementsConnection """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection """ Collection of Salesforce FeedRevision """ - feedRevisions( - filter: SalesforceFeedRevisionConnectionFilter - sortByCustomField: SalesforceFeedRevisionSortByFieldEnum - sortByField: SalesforceFeedRevisionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedRevisionsConnection + feedRevisions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedRevisionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedRevisionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedRevisionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedRevisions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedRevisionsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -197063,16 +204873,25 @@ type SalesforceDomain implements OneGraphNode { """ Collection of Salesforce DomainSite """ - domainSites( - filter: SalesforceDomainSiteConnectionFilter - sortByCustomField: SalesforceDomainSiteSortByFieldEnum - sortByField: SalesforceDomainSiteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDomainSitesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + domainSites(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDomainSiteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDomainSiteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDomainSiteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DomainSites to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDomainSitesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -197135,8 +204954,12 @@ type SalesforceDomainSite implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -197328,93 +205151,137 @@ type SalesforceSite implements OneGraphNode { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce DomainSite """ - siteDomainPaths( - filter: SalesforceDomainSiteConnectionFilter - sortByCustomField: SalesforceDomainSiteSortByFieldEnum - sortByField: SalesforceDomainSiteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDomainSitesConnection + siteDomainPaths(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDomainSiteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDomainSiteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDomainSiteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DomainSites to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDomainSitesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce SiteFeed """ - feeds( - filter: SalesforceSiteFeedConnectionFilter - sortByCustomField: SalesforceSiteFeedSortByFieldEnum - sortByField: SalesforceSiteFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSiteFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSiteFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSiteFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSiteFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SiteFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSiteFeedsConnection """ Collection of Salesforce SiteHistory """ - histories( - filter: SalesforceSiteHistoryConnectionFilter - sortByCustomField: SalesforceSiteHistorySortByFieldEnum - sortByField: SalesforceSiteHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSiteHistorysConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSiteHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSiteHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSiteHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SiteHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSiteHistorysConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -197508,49 +205375,73 @@ type SalesforceSiteFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -197712,49 +205603,73 @@ type SalesforceSolutionFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -197810,16 +205725,25 @@ type SalesforceFeedPollVote implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -197989,49 +205913,73 @@ type SalesforceTaskFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -198083,27 +206031,41 @@ type SalesforceFeedPollChoice implements OneGraphNode { """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -198336,49 +206298,73 @@ type SalesforceTopicFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -198490,49 +206476,73 @@ type SalesforceFeedComment implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FeedRevision """ - feedRevisions( - filter: SalesforceFeedRevisionConnectionFilter - sortByCustomField: SalesforceFeedRevisionSortByFieldEnum - sortByField: SalesforceFeedRevisionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedRevisionsConnection + feedRevisions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedRevisionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedRevisionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedRevisionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedRevisions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedRevisionsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -198707,49 +206717,73 @@ type SalesforceUserFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -198801,16 +206835,25 @@ type SalesforceFeedAttachment implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -198926,49 +206969,73 @@ type SalesforceCampaignFeed implements OneGraphNode { """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -199502,236 +207569,345 @@ type SalesforceCampaign implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce Campaign """ - childCampaigns( - filter: SalesforceCampaignConnectionFilter - sortByCustomField: SalesforceCampaignSortByFieldEnum - sortByField: SalesforceCampaignSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignsConnection + childCampaigns(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Campaigns to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignsConnection """ Collection of Salesforce CampaignFeed """ - feeds( - filter: SalesforceCampaignFeedConnectionFilter - sortByCustomField: SalesforceCampaignFeedSortByFieldEnum - sortByField: SalesforceCampaignFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CampaignFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignFeedsConnection """ Collection of Salesforce CampaignHistory """ - histories( - filter: SalesforceCampaignHistoryConnectionFilter - sortByCustomField: SalesforceCampaignHistorySortByFieldEnum - sortByField: SalesforceCampaignHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignHistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CampaignHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignHistorysConnection """ Collection of Salesforce CampaignMember """ - campaignMembers( - filter: SalesforceCampaignMemberConnectionFilter - sortByCustomField: SalesforceCampaignMemberSortByFieldEnum - sortByField: SalesforceCampaignMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignMembersConnection + campaignMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignMembersConnection """ Collection of Salesforce CampaignMemberStatus """ - campaignMemberStatuses( - filter: SalesforceCampaignMemberStatusConnectionFilter - sortByCustomField: SalesforceCampaignMemberStatusSortByFieldEnum - sortByField: SalesforceCampaignMemberStatusSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignMemberStatussConnection + campaignMemberStatuses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignMemberStatusConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignMemberStatusSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignMemberStatusSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CampaignMemberStatuses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignMemberStatussConnection """ Collection of Salesforce CampaignShare """ - shares( - filter: SalesforceCampaignShareConnectionFilter - sortByCustomField: SalesforceCampaignShareSortByFieldEnum - sortByField: SalesforceCampaignShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignSharesConnection + shares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CampaignShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignSharesConnection """ Collection of Salesforce CollaborationGroupRecord """ - recordAssociatedGroups( - filter: SalesforceCollaborationGroupRecordConnectionFilter - sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum - sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupRecordsConnection + recordAssociatedGroups(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions( - filter: SalesforceContentDistributionConnectionFilter - sortByCustomField: SalesforceContentDistributionSortByFieldEnum - sortByField: SalesforceContentDistributionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionsConnection + contentDistributions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emails( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: SalesforceEmailMessageSortByFieldEnum - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events( - filter: SalesforceEventConnectionFilter - sortByCustomField: SalesforceEventSortByFieldEnum - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + events(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Opportunity """ - opportunities( - filter: SalesforceOpportunityConnectionFilter - sortByCustomField: SalesforceOpportunitySortByFieldEnum - sortByField: SalesforceOpportunitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunitysConnection + opportunities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunitySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Opportunities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunitysConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: SalesforceTaskSortByFieldEnum - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection + tasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -199913,291 +208089,425 @@ type SalesforceOpportunity implements OneGraphNode { """ Collection of Salesforce AccountPartner """ - accountPartners( - filter: SalesforceAccountPartnerConnectionFilter - sortByCustomField: SalesforceAccountPartnerSortByFieldEnum - sortByField: SalesforceAccountPartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountPartnersConnection + accountPartners(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountPartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountPartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountPartnersConnection """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce CollaborationGroupRecord """ - recordAssociatedGroups( - filter: SalesforceCollaborationGroupRecordConnectionFilter - sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum - sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupRecordsConnection + recordAssociatedGroups(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions( - filter: SalesforceContentDistributionConnectionFilter - sortByCustomField: SalesforceContentDistributionSortByFieldEnum - sortByField: SalesforceContentDistributionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionsConnection + contentDistributions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emails( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: SalesforceEmailMessageSortByFieldEnum - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events( - filter: SalesforceEventConnectionFilter - sortByCustomField: SalesforceEventSortByFieldEnum - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + events(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Lead """ - leads( - filter: SalesforceLeadConnectionFilter - sortByCustomField: SalesforceLeadSortByFieldEnum - sortByField: SalesforceLeadSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadsConnection + leads(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Leads to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadsConnection """ Collection of Salesforce Note """ - notes( - filter: SalesforceNoteConnectionFilter - sortByCustomField: SalesforceNoteSortByFieldEnum - sortByField: SalesforceNoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceNotesConnection + notes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceNoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceNoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Notes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceNotesConnection """ Collection of Salesforce OpportunityCompetitor """ - opportunityCompetitors( - filter: SalesforceOpportunityCompetitorConnectionFilter - sortByCustomField: SalesforceOpportunityCompetitorSortByFieldEnum - sortByField: SalesforceOpportunityCompetitorSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityCompetitorsConnection + opportunityCompetitors(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityCompetitorConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityCompetitorSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityCompetitorSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityCompetitors to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityCompetitorsConnection """ Collection of Salesforce OpportunityContactRole """ - opportunityContactRoles( - filter: SalesforceOpportunityContactRoleConnectionFilter - sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum - sortByField: SalesforceOpportunityContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityContactRolesConnection + opportunityContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityContactRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityContactRolesConnection """ Collection of Salesforce OpportunityFeed """ - feeds( - filter: SalesforceOpportunityFeedConnectionFilter - sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum - sortByField: SalesforceOpportunityFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityFeedsConnection """ Collection of Salesforce OpportunityFieldHistory """ - histories( - filter: SalesforceOpportunityFieldHistoryConnectionFilter - sortByCustomField: SalesforceOpportunityFieldHistorySortByFieldEnum - sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityFieldHistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityFieldHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityFieldHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityFieldHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityFieldHistorysConnection """ Collection of Salesforce OpportunityHistory """ - opportunityHistories( - filter: SalesforceOpportunityHistoryConnectionFilter - sortByCustomField: SalesforceOpportunityHistorySortByFieldEnum - sortByField: SalesforceOpportunityHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityHistorysConnection + opportunityHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityHistorysConnection """ Collection of Salesforce OpportunityLineItem """ - opportunityLineItems( - filter: SalesforceOpportunityLineItemConnectionFilter - sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum - sortByField: SalesforceOpportunityLineItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityLineItemsConnection + opportunityLineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityLineItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityLineItemsConnection """ Collection of Salesforce OpportunityPartner """ - opportunityPartnersFrom( - filter: SalesforceOpportunityPartnerConnectionFilter - sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum - sortByField: SalesforceOpportunityPartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityPartnersConnection + opportunityPartnersFrom(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityPartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityPartnersConnection """ Collection of Salesforce OpportunityShare """ - shares( - filter: SalesforceOpportunityShareConnectionFilter - sortByCustomField: SalesforceOpportunityShareSortByFieldEnum - sortByField: SalesforceOpportunityShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunitySharesConnection + shares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunitySharesConnection """ Collection of Salesforce Partner """ - partners( - filter: SalesforcePartnerConnectionFilter - sortByCustomField: SalesforcePartnerSortByFieldEnum - sortByField: SalesforcePartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePartnersConnection + partners(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePartnerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Partners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePartnersConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: SalesforceTaskSortByFieldEnum - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection + tasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -200656,71 +208966,105 @@ type SalesforcePricebook2 implements OneGraphNode { """ Collection of Salesforce Contract """ - contracts( - filter: SalesforceContractConnectionFilter - sortByCustomField: SalesforceContractSortByFieldEnum - sortByField: SalesforceContractSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractsConnection + contracts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContractSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contracts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Opportunity """ - opportunities( - filter: SalesforceOpportunityConnectionFilter - sortByCustomField: SalesforceOpportunitySortByFieldEnum - sortByField: SalesforceOpportunitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunitysConnection + opportunities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunitySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Opportunities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunitysConnection """ Collection of Salesforce Order """ - orders( - filter: SalesforceOrderConnectionFilter - sortByCustomField: SalesforceOrderSortByFieldEnum - sortByField: SalesforceOrderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrdersConnection + orders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Orders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrdersConnection """ Collection of Salesforce Pricebook2History """ - histories( - filter: SalesforcePricebook2HistoryConnectionFilter - sortByCustomField: SalesforcePricebook2HistorySortByFieldEnum - sortByField: SalesforcePricebook2HistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePricebook2HistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePricebook2HistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePricebook2HistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePricebook2HistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Pricebook2Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePricebook2HistorysConnection """ Collection of Salesforce PricebookEntry """ - pricebookEntries( - filter: SalesforcePricebookEntryConnectionFilter - sortByCustomField: SalesforcePricebookEntrySortByFieldEnum - sortByField: SalesforcePricebookEntrySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePricebookEntrysConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + pricebookEntries(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePricebookEntryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePricebookEntrySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePricebookEntrySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PricebookEntries to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePricebookEntrysConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -200922,203 +209266,297 @@ type SalesforceContract implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce CollaborationGroupRecord """ - recordAssociatedGroups( - filter: SalesforceCollaborationGroupRecordConnectionFilter - sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum - sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupRecordsConnection + recordAssociatedGroups(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce ContractContactRole """ - contractContactRoles( - filter: SalesforceContractContactRoleConnectionFilter - sortByCustomField: SalesforceContractContactRoleSortByFieldEnum - sortByField: SalesforceContractContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractContactRolesConnection + contractContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContractContactRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContractContactRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractContactRolesConnection """ Collection of Salesforce ContractFeed """ - feeds( - filter: SalesforceContractFeedConnectionFilter - sortByCustomField: SalesforceContractFeedSortByFieldEnum - sortByField: SalesforceContractFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContractFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContractFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractFeedsConnection """ Collection of Salesforce ContractHistory """ - histories( - filter: SalesforceContractHistoryConnectionFilter - sortByCustomField: SalesforceContractHistorySortByFieldEnum - sortByField: SalesforceContractHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractHistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContractHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContractHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractHistorysConnection """ Collection of Salesforce EmailMessage """ - emails( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: SalesforceEmailMessageSortByFieldEnum - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events( - filter: SalesforceEventConnectionFilter - sortByCustomField: SalesforceEventSortByFieldEnum - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + events(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Note """ - notes( - filter: SalesforceNoteConnectionFilter - sortByCustomField: SalesforceNoteSortByFieldEnum - sortByField: SalesforceNoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceNotesConnection + notes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceNoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceNoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Notes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceNotesConnection """ Collection of Salesforce Order """ - orders( - filter: SalesforceOrderConnectionFilter - sortByCustomField: SalesforceOrderSortByFieldEnum - sortByField: SalesforceOrderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrdersConnection + orders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Orders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrdersConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: SalesforceTaskSortByFieldEnum - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection + tasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -201394,203 +209832,297 @@ type SalesforceOrder implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emails( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: SalesforceEmailMessageSortByFieldEnum - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events( - filter: SalesforceEventConnectionFilter - sortByCustomField: SalesforceEventSortByFieldEnum - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + events(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Note """ - notes( - filter: SalesforceNoteConnectionFilter - sortByCustomField: SalesforceNoteSortByFieldEnum - sortByField: SalesforceNoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceNotesConnection + notes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceNoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceNoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Notes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceNotesConnection """ Collection of Salesforce Order """ - orders( - filter: SalesforceOrderConnectionFilter - sortByCustomField: SalesforceOrderSortByFieldEnum - sortByField: SalesforceOrderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrdersConnection + orders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Orders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrdersConnection """ Collection of Salesforce OrderFeed """ - feeds( - filter: SalesforceOrderFeedConnectionFilter - sortByCustomField: SalesforceOrderFeedSortByFieldEnum - sortByField: SalesforceOrderFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderFeedsConnection """ Collection of Salesforce OrderHistory """ - histories( - filter: SalesforceOrderHistoryConnectionFilter - sortByCustomField: SalesforceOrderHistorySortByFieldEnum - sortByField: SalesforceOrderHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderHistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderHistorysConnection """ Collection of Salesforce OrderItem """ - orderItems( - filter: SalesforceOrderItemConnectionFilter - sortByCustomField: SalesforceOrderItemSortByFieldEnum - sortByField: SalesforceOrderItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderItemsConnection + orderItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderItemsConnection """ Collection of Salesforce OrderShare """ - shares( - filter: SalesforceOrderShareConnectionFilter - sortByCustomField: SalesforceOrderShareSortByFieldEnum - sortByField: SalesforceOrderShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderSharesConnection + shares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderSharesConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: SalesforceTaskSortByFieldEnum - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection + tasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -201658,27 +210190,41 @@ type SalesforceOrgDeleteRequest implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -201760,27 +210306,41 @@ type SalesforceStreamingChannel implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -202010,8 +210570,12 @@ type SalesforceProcessInstanceStep implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -202315,16 +210879,25 @@ type SalesforceProcessInstanceNode implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -202388,27 +210961,41 @@ type SalesforceProcessNode implements OneGraphNode { """ Collection of Salesforce ProcessInstanceNode """ - processInstanceNodes( - filter: SalesforceProcessInstanceNodeConnectionFilter - sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum - sortByField: SalesforceProcessInstanceNodeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstanceNodesConnection + processInstanceNodes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceNodeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstanceNodes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstanceNodesConnection """ Collection of Salesforce ProcessInstanceStep """ - processInstanceSteps( - filter: SalesforceProcessInstanceStepConnectionFilter - sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum - sortByField: SalesforceProcessInstanceStepSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstanceStepsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + processInstanceSteps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceStepConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstanceSteps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstanceStepsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -202706,27 +211293,41 @@ type SalesforceProcessDefinition implements OneGraphNode { """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce ProcessNode """ - processNodes( - filter: SalesforceProcessNodeConnectionFilter - sortByCustomField: SalesforceProcessNodeSortByFieldEnum - sortByField: SalesforceProcessNodeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessNodesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + processNodes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessNodeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessNodeSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessNodeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessNodes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessNodesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -202828,49 +211429,73 @@ type SalesforceProcessInstance implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstanceNode """ - nodes( - filter: SalesforceProcessInstanceNodeConnectionFilter - sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum - sortByField: SalesforceProcessInstanceNodeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstanceNodesConnection + nodes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceNodeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstanceNodes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstanceNodesConnection """ Collection of Salesforce ProcessInstanceStep """ - steps( - filter: SalesforceProcessInstanceStepConnectionFilter - sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum - sortByField: SalesforceProcessInstanceStepSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstanceStepsConnection + steps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceStepConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstanceSteps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstanceStepsConnection """ Collection of Salesforce ProcessInstanceWorkitem """ - workitems( - filter: SalesforceProcessInstanceWorkitemConnectionFilter - sortByCustomField: SalesforceProcessInstanceWorkitemSortByFieldEnum - sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstanceWorkitemsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + workitems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceWorkitemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceWorkitemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstanceWorkitems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstanceWorkitemsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -203129,16 +211754,25 @@ type SalesforceUserProvAccountStaging implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -203305,27 +211939,41 @@ type SalesforceUserProvAccount implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce UserProvisioningRequest """ - userProvisioningRequests( - filter: SalesforceUserProvisioningRequestConnectionFilter - sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum - sortByField: SalesforceUserProvisioningRequestSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningRequestsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userProvisioningRequests(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningRequestConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningRequestsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -203519,16 +212167,25 @@ type SalesforceUserAppMenuCustomization implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -203742,16 +212399,25 @@ type SalesforceInstalledMobileApp implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -204001,8 +212667,12 @@ type SalesforcePermissionSetAssignment implements OneGraphNode { Date Assigned """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -204217,8 +212887,12 @@ type SalesforceObjectPermissions implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -204360,8 +213034,12 @@ type SalesforceFieldPermissions implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -204545,8 +213223,12 @@ type SalesforcePermissionSetLicenseAssign implements OneGraphNode { User ID """ assignee: SalesforceUser! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -204871,16 +213553,25 @@ type SalesforceScontrol implements OneGraphNode { """ Collection of Salesforce WebLink """ - webLinks( - filter: SalesforceWebLinkConnectionFilter - sortByCustomField: SalesforceWebLinkSortByFieldEnum - sortByField: SalesforceWebLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceWebLinksConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + webLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceWebLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceWebLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceWebLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of WebLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceWebLinksConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -205017,8 +213708,12 @@ type SalesforceWebLink implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -205228,8 +213923,12 @@ type SalesforceVisualforceAccessMetrics implements OneGraphNode { Daily Page View Count """ dailyPageViewCount: Int - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -205337,38 +214036,57 @@ type SalesforceApexPage implements OneGraphNode { """ Collection of Salesforce SetupEntityAccess """ - setupEntityAccessItems( - filter: SalesforceSetupEntityAccessConnectionFilter - sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum - sortByField: SalesforceSetupEntityAccessSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSetupEntityAccesssConnection + setupEntityAccessItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSetupEntityAccesssConnection """ Collection of Salesforce VisualforceAccessMetrics """ - visualforceAccessMetricsPlural( - filter: SalesforceVisualforceAccessMetricsConnectionFilter - sortByCustomField: SalesforceVisualforceAccessMetricsSortByFieldEnum - sortByField: SalesforceVisualforceAccessMetricsSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceVisualforceAccessMetricssConnection + visualforceAccessMetricsPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceVisualforceAccessMetricsConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceVisualforceAccessMetricsSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceVisualforceAccessMetricsSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of VisualforceAccessMetrics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceVisualforceAccessMetricssConnection """ Collection of Salesforce WebLink """ - webLinks( - filter: SalesforceWebLinkConnectionFilter - sortByCustomField: SalesforceWebLinkSortByFieldEnum - sortByField: SalesforceWebLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceWebLinksConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + webLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceWebLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceWebLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceWebLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of WebLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceWebLinksConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -206022,16 +214740,25 @@ type SalesforceUserProvisioningConfig implements OneGraphNode { """ Collection of Salesforce UserProvisioningRequest """ - userProvisioningRequests( - filter: SalesforceUserProvisioningRequestConnectionFilter - sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum - sortByField: SalesforceUserProvisioningRequestSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningRequestsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userProvisioningRequests(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningRequestConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningRequestsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -206305,8 +215032,12 @@ type SalesforceExternalDataUserAuth implements OneGraphNode { Auth. Provider ID """ authProvider: SalesforceAuthProvider - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -206422,38 +215153,57 @@ type SalesforceNamedCredential implements OneGraphNode { """ Collection of Salesforce ExternalDataUserAuth """ - userAuths( - filter: SalesforceExternalDataUserAuthConnectionFilter - sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum - sortByField: SalesforceExternalDataUserAuthSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceExternalDataUserAuthsConnection + userAuths(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceExternalDataUserAuthConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceExternalDataUserAuthsConnection """ Collection of Salesforce SetupEntityAccess """ - setupEntityAccessItems( - filter: SalesforceSetupEntityAccessConnectionFilter - sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum - sortByField: SalesforceSetupEntityAccessSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSetupEntityAccesssConnection + setupEntityAccessItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSetupEntityAccesssConnection """ Collection of Salesforce UserProvisioningConfig """ - userProvisioningConfigs( - filter: SalesforceUserProvisioningConfigConnectionFilter - sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum - sortByField: SalesforceUserProvisioningConfigSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningConfigsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userProvisioningConfigs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningConfigConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvisioningConfigs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningConfigsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -206494,8 +215244,12 @@ type SalesforceSetupEntityAccess implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -207668,8 +216422,12 @@ type SalesforceCustomPermissionDependency implements OneGraphNode { Custom Permission ID """ requiredCustomPermission: SalesforceCustomPermission! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -207765,49 +216523,73 @@ type SalesforceCustomPermission implements OneGraphNode { """ Collection of Salesforce CustomPermissionDependency """ - customPermissionItem( - filter: SalesforceCustomPermissionDependencyConnectionFilter - sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum - sortByField: SalesforceCustomPermissionDependencySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomPermissionDependencysConnection + customPermissionItem(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomPermissionDependencyConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CustomPermissionDependencies to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomPermissionDependencysConnection """ Collection of Salesforce CustomPermissionDependency """ - customPermissionDependencyItem( - filter: SalesforceCustomPermissionDependencyConnectionFilter - sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum - sortByField: SalesforceCustomPermissionDependencySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomPermissionDependencysConnection + customPermissionDependencyItem(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomPermissionDependencyConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CustomPermissionDependencies to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomPermissionDependencysConnection """ Collection of Salesforce GrantedByLicense """ - grantedByLicenses( - filter: SalesforceGrantedByLicenseConnectionFilter - sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum - sortByField: SalesforceGrantedByLicenseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceGrantedByLicensesConnection + grantedByLicenses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceGrantedByLicenseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of GrantedByLicenses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceGrantedByLicensesConnection """ Collection of Salesforce SetupEntityAccess """ - setupEntityAccessItems( - filter: SalesforceSetupEntityAccessConnectionFilter - sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum - sortByField: SalesforceSetupEntityAccessSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSetupEntityAccesssConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + setupEntityAccessItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSetupEntityAccesssConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -207870,8 +216652,12 @@ type SalesforceGrantedByLicense implements OneGraphNode { Custom Permission ID """ customPermission: SalesforceCustomPermission! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -208715,38 +217501,57 @@ type SalesforcePermissionSetLicense implements OneGraphNode { """ Collection of Salesforce GrantedByLicense """ - grantedByLicenses( - filter: SalesforceGrantedByLicenseConnectionFilter - sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum - sortByField: SalesforceGrantedByLicenseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceGrantedByLicensesConnection + grantedByLicenses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceGrantedByLicenseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of GrantedByLicenses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceGrantedByLicensesConnection """ Collection of Salesforce PermissionSet """ - permissionSets( - filter: SalesforcePermissionSetConnectionFilter - sortByCustomField: SalesforcePermissionSetSortByFieldEnum - sortByField: SalesforcePermissionSetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePermissionSetsConnection + permissionSets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePermissionSetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePermissionSetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PermissionSets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePermissionSetsConnection """ Collection of Salesforce PermissionSetLicenseAssign """ - permissionSetLicenseAssignments( - filter: SalesforcePermissionSetLicenseAssignConnectionFilter - sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum - sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePermissionSetLicenseAssignsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + permissionSetLicenseAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PermissionSetLicenseAssigns to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePermissionSetLicenseAssignsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -209707,27 +218512,41 @@ type SalesforceProfile implements OneGraphNode { """ Collection of Salesforce PermissionSet """ - permissionSets( - filter: SalesforcePermissionSetConnectionFilter - sortByCustomField: SalesforcePermissionSetSortByFieldEnum - sortByField: SalesforcePermissionSetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePermissionSetsConnection + permissionSets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePermissionSetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePermissionSetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PermissionSets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePermissionSetsConnection """ Collection of Salesforce User """ - users( - filter: SalesforceUserConnectionFilter - sortByCustomField: SalesforceUserSortByFieldEnum - sortByField: SalesforceUserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUsersConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + users(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Users to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUsersConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -210765,8 +219584,12 @@ type SalesforceCustomObjectUserLicenseMetrics implements OneGraphNode { Count of Objects assigned """ objectCount: Int - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -210846,38 +219669,57 @@ type SalesforceUserLicense implements OneGraphNode { """ Collection of Salesforce CustomObjectUserLicenseMetrics """ - customObjectUserLicenseMetricsPlural( - filter: SalesforceCustomObjectUserLicenseMetricsConnectionFilter - sortByCustomField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum - sortByField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomObjectUserLicenseMetricssConnection + customObjectUserLicenseMetricsPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomObjectUserLicenseMetricsConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CustomObjectUserLicenseMetrics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomObjectUserLicenseMetricssConnection """ Collection of Salesforce PermissionSet """ - permissionSets( - filter: SalesforcePermissionSetConnectionFilter - sortByCustomField: SalesforcePermissionSetSortByFieldEnum - sortByField: SalesforcePermissionSetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePermissionSetsConnection + permissionSets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePermissionSetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePermissionSetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PermissionSets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePermissionSetsConnection """ Collection of Salesforce Profile """ - profiles( - filter: SalesforceProfileConnectionFilter - sortByCustomField: SalesforceProfileSortByFieldEnum - sortByField: SalesforceProfileSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProfilesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + profiles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProfileConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProfileSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProfileSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Profiles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProfilesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -211709,60 +220551,89 @@ type SalesforcePermissionSet implements OneGraphNode { """ Collection of Salesforce FieldPermissions """ - fieldPerms( - filter: SalesforceFieldPermissionsConnectionFilter - sortByCustomField: SalesforceFieldPermissionsSortByFieldEnum - sortByField: SalesforceFieldPermissionsSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFieldPermissionssConnection + fieldPerms(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFieldPermissionsConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFieldPermissionsSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFieldPermissionsSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FieldPermissions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFieldPermissionssConnection """ Collection of Salesforce ObjectPermissions """ - objectPerms( - filter: SalesforceObjectPermissionsConnectionFilter - sortByCustomField: SalesforceObjectPermissionsSortByFieldEnum - sortByField: SalesforceObjectPermissionsSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceObjectPermissionssConnection + objectPerms(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceObjectPermissionsConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceObjectPermissionsSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceObjectPermissionsSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ObjectPermissions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceObjectPermissionssConnection """ Collection of Salesforce PermissionSetAssignment """ - assignments( - filter: SalesforcePermissionSetAssignmentConnectionFilter - sortByCustomField: SalesforcePermissionSetAssignmentSortByFieldEnum - sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePermissionSetAssignmentsConnection + assignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePermissionSetAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePermissionSetAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PermissionSetAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePermissionSetAssignmentsConnection """ Collection of Salesforce SessionPermSetActivation """ - sessionActivations( - filter: SalesforceSessionPermSetActivationConnectionFilter - sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum - sortByField: SalesforceSessionPermSetActivationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSessionPermSetActivationsConnection + sessionActivations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSessionPermSetActivationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SessionPermSetActivations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSessionPermSetActivationsConnection """ Collection of Salesforce SetupEntityAccess """ - setupEntityAccessItems( - filter: SalesforceSetupEntityAccessConnectionFilter - sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum - sortByField: SalesforceSetupEntityAccessSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSetupEntityAccesssConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + setupEntityAccessItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSetupEntityAccesssConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -211837,8 +220708,12 @@ type SalesforceSessionPermSetActivation implements OneGraphNode { Description """ description: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -212308,8 +221183,12 @@ type SalesforceVerificationHistory implements OneGraphNode { System Modstamp """ systemModstamp: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -212564,38 +221443,57 @@ type SalesforceLoginGeo implements OneGraphNode { """ Collection of Salesforce AuthSession """ - authSessions( - filter: SalesforceAuthSessionConnectionFilter - sortByCustomField: SalesforceAuthSessionSortByFieldEnum - sortByField: SalesforceAuthSessionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthSessionsConnection + authSessions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthSessionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthSessionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AuthSessions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthSessionsConnection """ Collection of Salesforce LoginHistory """ - loginHistories( - filter: SalesforceLoginHistoryConnectionFilter - sortByCustomField: SalesforceLoginHistorySortByFieldEnum - sortByField: SalesforceLoginHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLoginHistorysConnection + loginHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLoginHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLoginHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LoginHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLoginHistorysConnection """ Collection of Salesforce VerificationHistory """ - verificationHistories( - filter: SalesforceVerificationHistoryConnectionFilter - sortByCustomField: SalesforceVerificationHistorySortByFieldEnum - sortByField: SalesforceVerificationHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceVerificationHistorysConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + verificationHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceVerificationHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceVerificationHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceVerificationHistorysConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -213092,16 +221990,25 @@ type SalesforceAuthConfig implements OneGraphNode { """ Collection of Salesforce AuthConfigProviders """ - authProvidersForConfig( - filter: SalesforceAuthConfigProvidersConnectionFilter - sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum - sortByField: SalesforceAuthConfigProvidersSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthConfigProviderssConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + authProvidersForConfig(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthConfigProvidersConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthConfigProviderssConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -213164,8 +222071,12 @@ type SalesforceAuthConfigProviders implements OneGraphNode { Authentication Provider ID """ authProvider: SalesforceAuthConfigProvidersAuthProviderUnion! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -213333,27 +222244,41 @@ type SalesforceSamlSsoConfig implements OneGraphNode { """ Collection of Salesforce AuthConfigProviders """ - authConfigProvidersPlural( - filter: SalesforceAuthConfigProvidersConnectionFilter - sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum - sortByField: SalesforceAuthConfigProvidersSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthConfigProviderssConnection + authConfigProvidersPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthConfigProvidersConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthConfigProviderssConnection """ Collection of Salesforce LoginHistory """ - loginHistories( - filter: SalesforceLoginHistoryConnectionFilter - sortByCustomField: SalesforceLoginHistorySortByFieldEnum - sortByField: SalesforceLoginHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLoginHistorysConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + loginHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLoginHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLoginHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LoginHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLoginHistorysConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -213453,27 +222378,41 @@ type SalesforceLoginHistory implements OneGraphNode { """ Collection of Salesforce AuthSession """ - authSessions( - filter: SalesforceAuthSessionConnectionFilter - sortByCustomField: SalesforceAuthSessionSortByFieldEnum - sortByField: SalesforceAuthSessionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthSessionsConnection + authSessions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthSessionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthSessionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AuthSessions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthSessionsConnection """ Collection of Salesforce VerificationHistory """ - verificationHistories( - filter: SalesforceVerificationHistoryConnectionFilter - sortByCustomField: SalesforceVerificationHistorySortByFieldEnum - sortByField: SalesforceVerificationHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceVerificationHistorysConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + verificationHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceVerificationHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceVerificationHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceVerificationHistorysConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -213563,38 +222502,57 @@ type SalesforceAuthSession implements OneGraphNode { """ Collection of Salesforce AuthSession """ - authSessions( - filter: SalesforceAuthSessionConnectionFilter - sortByCustomField: SalesforceAuthSessionSortByFieldEnum - sortByField: SalesforceAuthSessionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthSessionsConnection + authSessions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthSessionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthSessionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AuthSessions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthSessionsConnection """ Collection of Salesforce IdpEventLog """ - idpEventLogs( - filter: SalesforceIdpEventLogConnectionFilter - sortByCustomField: SalesforceIdpEventLogSortByFieldEnum - sortByField: SalesforceIdpEventLogSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceIdpEventLogsConnection + idpEventLogs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceIdpEventLogConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceIdpEventLogSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceIdpEventLogSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of IdpEventLogs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceIdpEventLogsConnection """ Collection of Salesforce SessionPermSetActivation """ - sessionPermSetActivations( - filter: SalesforceSessionPermSetActivationConnectionFilter - sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum - sortByField: SalesforceSessionPermSetActivationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSessionPermSetActivationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + sessionPermSetActivations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSessionPermSetActivationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SessionPermSetActivations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSessionPermSetActivationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -213661,8 +222619,12 @@ type SalesforceIdpEventLog implements OneGraphNode { Has Logout URL """ optionsHasLogoutUrl: Boolean! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -213770,104 +222732,153 @@ type SalesforceConnectedApplication implements OneGraphNode { """ Collection of Salesforce IdpEventLog """ - idpEventLogs( - filter: SalesforceIdpEventLogConnectionFilter - sortByCustomField: SalesforceIdpEventLogSortByFieldEnum - sortByField: SalesforceIdpEventLogSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceIdpEventLogsConnection + idpEventLogs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceIdpEventLogConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceIdpEventLogSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceIdpEventLogSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of IdpEventLogs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceIdpEventLogsConnection """ Collection of Salesforce InstalledMobileApp """ - installedMobileApps( - filter: SalesforceInstalledMobileAppConnectionFilter - sortByCustomField: SalesforceInstalledMobileAppSortByFieldEnum - sortByField: SalesforceInstalledMobileAppSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceInstalledMobileAppsConnection + installedMobileApps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceInstalledMobileAppConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceInstalledMobileAppSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceInstalledMobileAppSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of InstalledMobileApps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceInstalledMobileAppsConnection """ Collection of Salesforce SetupEntityAccess """ - setupEntityAccessItems( - filter: SalesforceSetupEntityAccessConnectionFilter - sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum - sortByField: SalesforceSetupEntityAccessSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSetupEntityAccesssConnection + setupEntityAccessItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSetupEntityAccesssConnection """ Collection of Salesforce UserAppMenuCustomization """ - userAppMenuCustomizations( - filter: SalesforceUserAppMenuCustomizationConnectionFilter - sortByCustomField: SalesforceUserAppMenuCustomizationSortByFieldEnum - sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserAppMenuCustomizationsConnection + userAppMenuCustomizations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserAppMenuCustomizationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserAppMenuCustomizationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserAppMenuCustomizations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserAppMenuCustomizationsConnection """ Collection of Salesforce UserProvAccount """ - userProvAccounts( - filter: SalesforceUserProvAccountConnectionFilter - sortByCustomField: SalesforceUserProvAccountSortByFieldEnum - sortByField: SalesforceUserProvAccountSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvAccountsConnection + userProvAccounts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvAccountConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvAccountSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvAccountSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvAccounts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvAccountsConnection """ Collection of Salesforce UserProvAccountStaging """ - userProvAccountStagings( - filter: SalesforceUserProvAccountStagingConnectionFilter - sortByCustomField: SalesforceUserProvAccountStagingSortByFieldEnum - sortByField: SalesforceUserProvAccountStagingSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvAccountStagingsConnection + userProvAccountStagings(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvAccountStagingConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvAccountStagingSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvAccountStagingSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvAccountStagings to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvAccountStagingsConnection """ Collection of Salesforce UserProvisioningConfig """ - userProvisioningConfigs( - filter: SalesforceUserProvisioningConfigConnectionFilter - sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum - sortByField: SalesforceUserProvisioningConfigSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningConfigsConnection + userProvisioningConfigs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningConfigConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvisioningConfigs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningConfigsConnection """ Collection of Salesforce UserProvisioningRequest """ - userProvisioningRequests( - filter: SalesforceUserProvisioningRequestConnectionFilter - sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum - sortByField: SalesforceUserProvisioningRequestSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningRequestsConnection + userProvisioningRequests(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningRequestConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningRequestsConnection """ Collection of Salesforce VerificationHistory """ - verificationHistories( - filter: SalesforceVerificationHistoryConnectionFilter - sortByCustomField: SalesforceVerificationHistorySortByFieldEnum - sortByField: SalesforceVerificationHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceVerificationHistorysConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + verificationHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceVerificationHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceVerificationHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceVerificationHistorysConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -214007,49 +223018,73 @@ type SalesforceUserProvisioningRequest implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce UserProvisioningLog """ - userProvisioningLogs( - filter: SalesforceUserProvisioningLogConnectionFilter - sortByCustomField: SalesforceUserProvisioningLogSortByFieldEnum - sortByField: SalesforceUserProvisioningLogSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningLogsConnection + userProvisioningLogs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningLogConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvisioningLogSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningLogSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvisioningLogs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningLogsConnection """ Collection of Salesforce UserProvisioningRequest """ - userProvisioningRequests( - filter: SalesforceUserProvisioningRequestConnectionFilter - sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum - sortByField: SalesforceUserProvisioningRequestSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningRequestsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userProvisioningRequests(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningRequestConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningRequestsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -214123,16 +223158,25 @@ type SalesforceWaveCompatibilityCheckItem implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -214378,16 +223422,25 @@ type SalesforceFlowInterview implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - recordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + recordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -214454,8 +223507,12 @@ type SalesforceFlowRecordRelation implements OneGraphNode { Record ID """ relatedRecord: SalesforceFlowRecordRelationRelatedRecordUnion! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -214864,8 +223921,12 @@ type SalesforceApexTestResultLimits implements OneGraphNode { LimitExceptions """ limitExceptions: String - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -215001,27 +224062,41 @@ type SalesforceApexTestRunResult implements OneGraphNode { """ Collection of Salesforce ApexTestQueueItem """ - apexTestQueueItems( - filter: SalesforceApexTestQueueItemConnectionFilter - sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum - sortByField: SalesforceApexTestQueueItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestQueueItemsConnection + apexTestQueueItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestQueueItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestQueueItemsConnection """ Collection of Salesforce ApexTestResult """ - apexTestResults( - filter: SalesforceApexTestResultConnectionFilter - sortByCustomField: SalesforceApexTestResultSortByFieldEnum - sortByField: SalesforceApexTestResultSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestResultsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + apexTestResults(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestResultConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestResultSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestResultsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -215266,16 +224341,25 @@ type SalesforceApexLog implements OneGraphNode { """ Collection of Salesforce ApexTestResult """ - apexTestResults( - filter: SalesforceApexTestResultConnectionFilter - sortByCustomField: SalesforceApexTestResultSortByFieldEnum - sortByField: SalesforceApexTestResultSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestResultsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + apexTestResults(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestResultConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestResultSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestResultsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -215361,16 +224445,25 @@ type SalesforceApexTestResult implements OneGraphNode { """ Collection of Salesforce ApexTestResultLimits """ - apexTestResults( - filter: SalesforceApexTestResultLimitsConnectionFilter - sortByCustomField: SalesforceApexTestResultLimitsSortByFieldEnum - sortByField: SalesforceApexTestResultLimitsSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestResultLimitssConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + apexTestResults(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestResultLimitsConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTestResultLimitsSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestResultLimitsSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTestResultLimits to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestResultLimitssConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -215771,60 +224864,89 @@ type SalesforceAsyncApexJob implements OneGraphNode { """ Collection of Salesforce ApexTestQueueItem """ - apexTestQueueItems( - filter: SalesforceApexTestQueueItemConnectionFilter - sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum - sortByField: SalesforceApexTestQueueItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestQueueItemsConnection + apexTestQueueItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestQueueItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestQueueItemsConnection """ Collection of Salesforce ApexTestResult """ - apexTestResults( - filter: SalesforceApexTestResultConnectionFilter - sortByCustomField: SalesforceApexTestResultSortByFieldEnum - sortByField: SalesforceApexTestResultSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestResultsConnection + apexTestResults(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestResultConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestResultSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestResultsConnection """ Collection of Salesforce ApexTestRunResult """ - asyncApex( - filter: SalesforceApexTestRunResultConnectionFilter - sortByCustomField: SalesforceApexTestRunResultSortByFieldEnum - sortByField: SalesforceApexTestRunResultSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestRunResultsConnection + asyncApex(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestRunResultConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTestRunResultSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestRunResultSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTestRunResults to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestRunResultsConnection """ Collection of Salesforce AsyncApexJob """ - asyncApexJobs( - filter: SalesforceAsyncApexJobConnectionFilter - sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum - sortByField: SalesforceAsyncApexJobSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAsyncApexJobsConnection + asyncApexJobs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAsyncApexJobConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAsyncApexJobSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AsyncApexJobs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAsyncApexJobsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -215890,27 +225012,41 @@ type SalesforceApexTestQueueItem implements OneGraphNode { """ Collection of Salesforce ApexTestResult """ - apexTestResults( - filter: SalesforceApexTestResultConnectionFilter - sortByCustomField: SalesforceApexTestResultSortByFieldEnum - sortByField: SalesforceApexTestResultSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestResultsConnection + apexTestResults(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestResultConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestResultSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestResultsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -216010,115 +225146,169 @@ type SalesforceApexClass implements OneGraphNode { """ Collection of Salesforce ApexTestQueueItem """ - apexTestQueueItems( - filter: SalesforceApexTestQueueItemConnectionFilter - sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum - sortByField: SalesforceApexTestQueueItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestQueueItemsConnection + apexTestQueueItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestQueueItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestQueueItemsConnection """ Collection of Salesforce ApexTestResult """ - apexTestResults( - filter: SalesforceApexTestResultConnectionFilter - sortByCustomField: SalesforceApexTestResultSortByFieldEnum - sortByField: SalesforceApexTestResultSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestResultsConnection + apexTestResults(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestResultConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTestResultSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestResultSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestResultsConnection """ Collection of Salesforce AsyncApexJob """ - asyncApexJobs( - filter: SalesforceAsyncApexJobConnectionFilter - sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum - sortByField: SalesforceAsyncApexJobSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAsyncApexJobsConnection + asyncApexJobs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAsyncApexJobConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAsyncApexJobSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AsyncApexJobs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAsyncApexJobsConnection """ Collection of Salesforce AuthProvider """ - authProviders( - filter: SalesforceAuthProviderConnectionFilter - sortByCustomField: SalesforceAuthProviderSortByFieldEnum - sortByField: SalesforceAuthProviderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthProvidersConnection + authProviders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthProviderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAuthProviderSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthProviderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AuthProviders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthProvidersConnection """ Collection of Salesforce EmailServicesFunction """ - emailServicesFunctions( - filter: SalesforceEmailServicesFunctionConnectionFilter - sortByCustomField: SalesforceEmailServicesFunctionSortByFieldEnum - sortByField: SalesforceEmailServicesFunctionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailServicesFunctionsConnection + emailServicesFunctions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailServicesFunctionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailServicesFunctionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailServicesFunctionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailServicesFunctions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailServicesFunctionsConnection """ Collection of Salesforce ExternalDataSource """ - externalDataSources( - filter: SalesforceExternalDataSourceConnectionFilter - sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum - sortByField: SalesforceExternalDataSourceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceExternalDataSourcesConnection + externalDataSources(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceExternalDataSourceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceExternalDataSourceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceExternalDataSourcesConnection """ Collection of Salesforce SamlSsoConfig """ - samlSsoConfigs( - filter: SalesforceSamlSsoConfigConnectionFilter - sortByCustomField: SalesforceSamlSsoConfigSortByFieldEnum - sortByField: SalesforceSamlSsoConfigSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSamlSsoConfigsConnection + samlSsoConfigs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSamlSsoConfigConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSamlSsoConfigSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSamlSsoConfigSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SamlSsoConfigs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSamlSsoConfigsConnection """ Collection of Salesforce SetupEntityAccess """ - setupEntityAccessItems( - filter: SalesforceSetupEntityAccessConnectionFilter - sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum - sortByField: SalesforceSetupEntityAccessSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSetupEntityAccesssConnection + setupEntityAccessItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSetupEntityAccesssConnection """ Collection of Salesforce TestSuiteMembership """ - testSuiteMemberships( - filter: SalesforceTestSuiteMembershipConnectionFilter - sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum - sortByField: SalesforceTestSuiteMembershipSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTestSuiteMembershipsConnection + testSuiteMemberships(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTestSuiteMembershipConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TestSuiteMemberships to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTestSuiteMembershipsConnection """ Collection of Salesforce TransactionSecurityPolicy """ - transactionSecurityPolicies( - filter: SalesforceTransactionSecurityPolicyConnectionFilter - sortByCustomField: SalesforceTransactionSecurityPolicySortByFieldEnum - sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTransactionSecurityPolicysConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + transactionSecurityPolicies(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTransactionSecurityPolicyConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTransactionSecurityPolicySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TransactionSecurityPolicies to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTransactionSecurityPolicysConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -216232,60 +225422,89 @@ type SalesforceAuthProvider implements OneGraphNode { """ Collection of Salesforce AuthConfigProviders """ - authConfigProvidersPlural( - filter: SalesforceAuthConfigProvidersConnectionFilter - sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum - sortByField: SalesforceAuthConfigProvidersSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthConfigProviderssConnection + authConfigProvidersPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthConfigProvidersConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthConfigProviderssConnection """ Collection of Salesforce ExternalDataSource """ - externalDataSources( - filter: SalesforceExternalDataSourceConnectionFilter - sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum - sortByField: SalesforceExternalDataSourceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceExternalDataSourcesConnection + externalDataSources(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceExternalDataSourceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceExternalDataSourceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceExternalDataSourcesConnection """ Collection of Salesforce ExternalDataUserAuth """ - externalDataUserAuths( - filter: SalesforceExternalDataUserAuthConnectionFilter - sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum - sortByField: SalesforceExternalDataUserAuthSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceExternalDataUserAuthsConnection + externalDataUserAuths(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceExternalDataUserAuthConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceExternalDataUserAuthsConnection """ Collection of Salesforce LoginHistory """ - loginHistories( - filter: SalesforceLoginHistoryConnectionFilter - sortByCustomField: SalesforceLoginHistorySortByFieldEnum - sortByField: SalesforceLoginHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLoginHistorysConnection + loginHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLoginHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLoginHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LoginHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLoginHistorysConnection """ Collection of Salesforce NamedCredential """ - namedCredentials( - filter: SalesforceNamedCredentialConnectionFilter - sortByCustomField: SalesforceNamedCredentialSortByFieldEnum - sortByField: SalesforceNamedCredentialSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceNamedCredentialsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + namedCredentials(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceNamedCredentialConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceNamedCredentialSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceNamedCredentialSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of NamedCredentials to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceNamedCredentialsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -216403,49 +225622,73 @@ type SalesforceExternalDataSource implements OneGraphNode { """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce ExternalDataUserAuth """ - userAuths( - filter: SalesforceExternalDataUserAuthConnectionFilter - sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum - sortByField: SalesforceExternalDataUserAuthSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceExternalDataUserAuthsConnection + userAuths(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceExternalDataUserAuthConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceExternalDataUserAuthsConnection """ Collection of Salesforce Product2 """ - product2s( - filter: SalesforceProduct2ConnectionFilter - sortByCustomField: SalesforceProduct2SortByFieldEnum - sortByField: SalesforceProduct2SortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProduct2sConnection + product2s(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProduct2ConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProduct2SortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProduct2SortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Product2s to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProduct2sConnection """ Collection of Salesforce SetupEntityAccess """ - setupEntityAccessItems( - filter: SalesforceSetupEntityAccessConnectionFilter - sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum - sortByField: SalesforceSetupEntityAccessSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSetupEntityAccesssConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + setupEntityAccessItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSetupEntityAccessConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSetupEntityAccessSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSetupEntityAccesssConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -216547,203 +225790,297 @@ type SalesforceProduct2 implements OneGraphNode { """ Collection of Salesforce Asset """ - assets( - filter: SalesforceAssetConnectionFilter - sortByCustomField: SalesforceAssetSortByFieldEnum - sortByField: SalesforceAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetsConnection + assets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Assets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetsConnection """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emails( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: SalesforceEmailMessageSortByFieldEnum - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events( - filter: SalesforceEventConnectionFilter - sortByCustomField: SalesforceEventSortByFieldEnum - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + events(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Note """ - notes( - filter: SalesforceNoteConnectionFilter - sortByCustomField: SalesforceNoteSortByFieldEnum - sortByField: SalesforceNoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceNotesConnection + notes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceNoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceNoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Notes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceNotesConnection """ Collection of Salesforce OpportunityLineItem """ - opportunityLineItems( - filter: SalesforceOpportunityLineItemConnectionFilter - sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum - sortByField: SalesforceOpportunityLineItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityLineItemsConnection + opportunityLineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityLineItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityLineItemsConnection """ Collection of Salesforce OrderItem """ - orderItems( - filter: SalesforceOrderItemConnectionFilter - sortByCustomField: SalesforceOrderItemSortByFieldEnum - sortByField: SalesforceOrderItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderItemsConnection + orderItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderItemsConnection """ Collection of Salesforce PricebookEntry """ - pricebookEntries( - filter: SalesforcePricebookEntryConnectionFilter - sortByCustomField: SalesforcePricebookEntrySortByFieldEnum - sortByField: SalesforcePricebookEntrySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePricebookEntrysConnection + pricebookEntries(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePricebookEntryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePricebookEntrySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePricebookEntrySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PricebookEntries to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePricebookEntrysConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce Product2Feed """ - feeds( - filter: SalesforceProduct2FeedConnectionFilter - sortByCustomField: SalesforceProduct2FeedSortByFieldEnum - sortByField: SalesforceProduct2FeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProduct2FeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProduct2FeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProduct2FeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProduct2FeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Product2Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProduct2FeedsConnection """ Collection of Salesforce Product2History """ - histories( - filter: SalesforceProduct2HistoryConnectionFilter - sortByCustomField: SalesforceProduct2HistorySortByFieldEnum - sortByField: SalesforceProduct2HistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProduct2HistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProduct2HistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProduct2HistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProduct2HistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Product2Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProduct2HistorysConnection """ Collection of Salesforce Task """ - tasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: SalesforceTaskSortByFieldEnum - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + tasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -216835,16 +226172,25 @@ type SalesforceAttachment implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -216968,192 +226314,281 @@ type SalesforceSolution implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce CaseSolution """ - caseSolutions( - filter: SalesforceCaseSolutionConnectionFilter - sortByCustomField: SalesforceCaseSolutionSortByFieldEnum - sortByField: SalesforceCaseSolutionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseSolutionsConnection + caseSolutions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseSolutionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseSolutionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseSolutionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseSolutions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseSolutionsConnection """ Collection of Salesforce CategoryData """ - categoryDatas( - filter: SalesforceCategoryDataConnectionFilter - sortByCustomField: SalesforceCategoryDataSortByFieldEnum - sortByField: SalesforceCategoryDataSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCategoryDatasConnection + categoryDatas(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCategoryDataConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCategoryDataSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCategoryDataSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CategoryDatas to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCategoryDatasConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emails( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: SalesforceEmailMessageSortByFieldEnum - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events( - filter: SalesforceEventConnectionFilter - sortByCustomField: SalesforceEventSortByFieldEnum - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + events(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce SolutionFeed """ - feeds( - filter: SalesforceSolutionFeedConnectionFilter - sortByCustomField: SalesforceSolutionFeedSortByFieldEnum - sortByField: SalesforceSolutionFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSolutionFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSolutionFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSolutionFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSolutionFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SolutionFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSolutionFeedsConnection """ Collection of Salesforce SolutionHistory """ - histories( - filter: SalesforceSolutionHistoryConnectionFilter - sortByCustomField: SalesforceSolutionHistorySortByFieldEnum - sortByField: SalesforceSolutionHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSolutionHistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSolutionHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSolutionHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSolutionHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SolutionHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSolutionHistorysConnection """ Collection of Salesforce Task """ - tasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: SalesforceTaskSortByFieldEnum - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection + tasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection """ Collection of Salesforce Vote """ - votes( - filter: SalesforceVoteConnectionFilter - sortByCustomField: SalesforceVoteSortByFieldEnum - sortByField: SalesforceVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceVotesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + votes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Votes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceVotesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -217351,126 +226786,185 @@ type SalesforceTask implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emailMessages( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: SalesforceEmailMessageSortByFieldEnum - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emailMessages(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Task """ - recurringTasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: SalesforceTaskSortByFieldEnum - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection + recurringTasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection """ Collection of Salesforce TaskFeed """ - feeds( - filter: SalesforceTaskFeedConnectionFilter - sortByCustomField: SalesforceTaskFeedSortByFieldEnum - sortByField: SalesforceTaskFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTaskFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TaskFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTaskFeedsConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -217522,16 +227016,25 @@ type SalesforceEntitySubscription implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -217937,93 +227440,137 @@ type SalesforceReport implements OneGraphNode { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce DashboardComponent """ - dashboardComponents( - filter: SalesforceDashboardComponentConnectionFilter - sortByCustomField: SalesforceDashboardComponentSortByFieldEnum - sortByField: SalesforceDashboardComponentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDashboardComponentsConnection + dashboardComponents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDashboardComponentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDashboardComponentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDashboardComponentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DashboardComponents to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDashboardComponentsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ReportFeed """ - feeds( - filter: SalesforceReportFeedConnectionFilter - sortByCustomField: SalesforceReportFeedSortByFieldEnum - sortByField: SalesforceReportFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceReportFeedsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceReportFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceReportFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceReportFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ReportFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceReportFeedsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -218061,82 +227608,121 @@ type SalesforceDashboardComponent implements OneGraphNode { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce DashboardComponentFeed """ - feeds( - filter: SalesforceDashboardComponentFeedConnectionFilter - sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum - sortByField: SalesforceDashboardComponentFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDashboardComponentFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDashboardComponentFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DashboardComponentFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDashboardComponentFeedsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -218356,93 +227942,137 @@ type SalesforceDashboard implements OneGraphNode { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce DashboardComponent """ - dashboardComponents( - filter: SalesforceDashboardComponentConnectionFilter - sortByCustomField: SalesforceDashboardComponentSortByFieldEnum - sortByField: SalesforceDashboardComponentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDashboardComponentsConnection + dashboardComponents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDashboardComponentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDashboardComponentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDashboardComponentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DashboardComponents to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDashboardComponentsConnection """ Collection of Salesforce DashboardFeed """ - feeds( - filter: SalesforceDashboardFeedConnectionFilter - sortByCustomField: SalesforceDashboardFeedSortByFieldEnum - sortByField: SalesforceDashboardFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDashboardFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDashboardFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDashboardFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDashboardFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DashboardFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDashboardFeedsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -218534,49 +228164,73 @@ type SalesforceFolder implements OneGraphNode { """ Collection of Salesforce Dashboard """ - dashboards( - filter: SalesforceDashboardConnectionFilter - sortByCustomField: SalesforceDashboardSortByFieldEnum - sortByField: SalesforceDashboardSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDashboardsConnection + dashboards(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDashboardConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDashboardSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDashboardSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Dashboards to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDashboardsConnection """ Collection of Salesforce Document """ - documents( - filter: SalesforceDocumentConnectionFilter - sortByCustomField: SalesforceDocumentSortByFieldEnum - sortByField: SalesforceDocumentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDocumentsConnection + documents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDocumentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDocumentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDocumentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Documents to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDocumentsConnection """ Collection of Salesforce EmailTemplate """ - emailTemplates( - filter: SalesforceEmailTemplateConnectionFilter - sortByCustomField: SalesforceEmailTemplateSortByFieldEnum - sortByField: SalesforceEmailTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailTemplatesConnection + emailTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailTemplatesConnection """ Collection of Salesforce Report """ - reports( - filter: SalesforceReportConnectionFilter - sortByCustomField: SalesforceReportSortByFieldEnum - sortByField: SalesforceReportSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceReportsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + reports(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceReportConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceReportSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceReportSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Reports to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceReportsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -218704,38 +228358,57 @@ type SalesforceDocument implements OneGraphNode { """ Collection of Salesforce CustomBrandAsset """ - customBrandAssets( - filter: SalesforceCustomBrandAssetConnectionFilter - sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum - sortByField: SalesforceCustomBrandAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomBrandAssetsConnection + customBrandAssets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomBrandAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomBrandAssetsConnection """ Collection of Salesforce DocumentAttachmentMap """ - documentAttachmentMaps( - filter: SalesforceDocumentAttachmentMapConnectionFilter - sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum - sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDocumentAttachmentMapsConnection + documentAttachmentMaps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDocumentAttachmentMapConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DocumentAttachmentMaps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDocumentAttachmentMapsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -219288,8 +228961,12 @@ type SalesforceStampAssignment implements OneGraphNode { User ID """ subject: SalesforceUser! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -219475,27 +229152,41 @@ type SalesforceStamp implements OneGraphNode { """ Collection of Salesforce CustomBrand """ - customBrands( - filter: SalesforceCustomBrandConnectionFilter - sortByCustomField: SalesforceCustomBrandSortByFieldEnum - sortByField: SalesforceCustomBrandSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomBrandsConnection + customBrands(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomBrandConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomBrandSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CustomBrands to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomBrandsConnection """ Collection of Salesforce StampAssignment """ - stampAssignments( - filter: SalesforceStampAssignmentConnectionFilter - sortByCustomField: SalesforceStampAssignmentSortByFieldEnum - sortByField: SalesforceStampAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceStampAssignmentsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + stampAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceStampAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceStampAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceStampAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of StampAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceStampAssignmentsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -219547,16 +229238,25 @@ type SalesforceCustomBrand implements OneGraphNode { """ Collection of Salesforce CustomBrandAsset """ - customBrandAssets( - filter: SalesforceCustomBrandAssetConnectionFilter - sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum - sortByField: SalesforceCustomBrandAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomBrandAssetsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customBrandAssets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomBrandAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomBrandAssetsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -219619,8 +229319,12 @@ type SalesforceCustomBrandAsset implements OneGraphNode { Last Modified By ID """ lastModifiedBy: SalesforceUser! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -219923,38 +229627,57 @@ type SalesforceContentAsset implements OneGraphNode { """ Collection of Salesforce ChatterExtension """ - chatterExtensions( - filter: SalesforceChatterExtensionConnectionFilter - sortByCustomField: SalesforceChatterExtensionSortByFieldEnum - sortByField: SalesforceChatterExtensionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceChatterExtensionsConnection + chatterExtensions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceChatterExtensionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceChatterExtensionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceChatterExtensionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ChatterExtensions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceChatterExtensionsConnection """ Collection of Salesforce ContentDocument """ - contentDocuments( - filter: SalesforceContentDocumentConnectionFilter - sortByCustomField: SalesforceContentDocumentSortByFieldEnum - sortByField: SalesforceContentDocumentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentsConnection + contentDocuments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentsConnection """ Collection of Salesforce CustomBrandAsset """ - customBrandAssets( - filter: SalesforceCustomBrandAssetConnectionFilter - sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum - sortByField: SalesforceCustomBrandAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomBrandAssetsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customBrandAssets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomBrandAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomBrandAssetsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -220060,16 +229783,25 @@ type SalesforceChatterExtension implements OneGraphNode { """ Collection of Salesforce ChatterExtensionConfig """ - chatterExtensionConfigs( - filter: SalesforceChatterExtensionConfigConnectionFilter - sortByCustomField: SalesforceChatterExtensionConfigSortByFieldEnum - sortByField: SalesforceChatterExtensionConfigSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceChatterExtensionConfigsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + chatterExtensionConfigs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceChatterExtensionConfigConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceChatterExtensionConfigSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceChatterExtensionConfigSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ChatterExtensionConfigs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceChatterExtensionConfigsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -220336,8 +230068,12 @@ type SalesforceAuraDefinition implements OneGraphNode { Source """ source: String! - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -220433,27 +230169,41 @@ type SalesforceAuraDefinitionBundle implements OneGraphNode { """ Collection of Salesforce AuraDefinition """ - auraDefinitions( - filter: SalesforceAuraDefinitionConnectionFilter - sortByCustomField: SalesforceAuraDefinitionSortByFieldEnum - sortByField: SalesforceAuraDefinitionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuraDefinitionsConnection + auraDefinitions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuraDefinitionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAuraDefinitionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuraDefinitionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AuraDefinitions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuraDefinitionsConnection """ Collection of Salesforce ChatterExtension """ - chatterExtensions( - filter: SalesforceChatterExtensionConnectionFilter - sortByCustomField: SalesforceChatterExtensionSortByFieldEnum - sortByField: SalesforceChatterExtensionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceChatterExtensionsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + chatterExtensions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceChatterExtensionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceChatterExtensionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceChatterExtensionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ChatterExtensions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceChatterExtensionsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -220576,16 +230326,25 @@ type SalesforceBusinessProcess implements OneGraphNode { """ Collection of Salesforce RecordType """ - recordTypes( - filter: SalesforceRecordTypeConnectionFilter - sortByCustomField: SalesforceRecordTypeSortByFieldEnum - sortByField: SalesforceRecordTypeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceRecordTypesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + recordTypes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceRecordTypeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceRecordTypeSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceRecordTypeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of RecordTypes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceRecordTypesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -220663,27 +230422,41 @@ type SalesforceRecordType implements OneGraphNode { """ Collection of Salesforce Campaign """ - campaigns( - filter: SalesforceCampaignConnectionFilter - sortByCustomField: SalesforceCampaignSortByFieldEnum - sortByField: SalesforceCampaignSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignsConnection + campaigns(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Campaigns to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignsConnection """ Collection of Salesforce ContentWorkspace """ - contentWorkspaces( - filter: SalesforceContentWorkspaceConnectionFilter - sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum - sortByField: SalesforceContentWorkspaceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspacesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + contentWorkspaces(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentWorkspaces to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspacesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -220785,93 +230558,137 @@ type SalesforceContentWorkspace implements OneGraphNode { """ Collection of Salesforce ContentDocument """ - contentDocuments( - filter: SalesforceContentDocumentConnectionFilter - sortByCustomField: SalesforceContentDocumentSortByFieldEnum - sortByField: SalesforceContentDocumentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentsConnection + contentDocuments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentFolderLink """ - contentFolderLinks( - filter: SalesforceContentFolderLinkConnectionFilter - sortByCustomField: SalesforceContentFolderLinkSortByFieldEnum - sortByField: SalesforceContentFolderLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentFolderLinksConnection + contentFolderLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentFolderLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentFolderLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentFolderLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentFolderLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentFolderLinksConnection """ Collection of Salesforce ContentNotification """ - contentNotifications( - filter: SalesforceContentNotificationConnectionFilter - sortByCustomField: SalesforceContentNotificationSortByFieldEnum - sortByField: SalesforceContentNotificationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentNotificationsConnection + contentNotifications(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentNotificationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentNotificationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentNotificationsConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce ContentWorkspaceDoc """ - contentWorkspaceDocs( - filter: SalesforceContentWorkspaceDocConnectionFilter - sortByCustomField: SalesforceContentWorkspaceDocSortByFieldEnum - sortByField: SalesforceContentWorkspaceDocSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspaceDocsConnection + contentWorkspaceDocs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceDocConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentWorkspaceDocSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceDocSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentWorkspaceDocs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspaceDocsConnection """ Collection of Salesforce ContentWorkspaceMember """ - contentWorkspaceMembers( - filter: SalesforceContentWorkspaceMemberConnectionFilter - sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum - sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspaceMembersConnection + contentWorkspaceMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspaceMembersConnection """ Collection of Salesforce ContentWorkspaceSubscription """ - contentWorkspaceSubscriptions( - filter: SalesforceContentWorkspaceSubscriptionConnectionFilter - sortByCustomField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum - sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspaceSubscriptionsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + contentWorkspaceSubscriptions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceSubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentWorkspaceSubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspaceSubscriptionsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -221013,192 +230830,281 @@ type SalesforceContentDocument implements OneGraphNode { """ Collection of Salesforce ContentAsset """ - contentAssets( - filter: SalesforceContentAssetConnectionFilter - sortByCustomField: SalesforceContentAssetSortByFieldEnum - sortByField: SalesforceContentAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentAssetsConnection + contentAssets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentAssetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentAssets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentAssetsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions( - filter: SalesforceContentDistributionConnectionFilter - sortByCustomField: SalesforceContentDistributionSortByFieldEnum - sortByField: SalesforceContentDistributionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionsConnection + contentDistributions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentFeed """ - feeds( - filter: SalesforceContentDocumentFeedConnectionFilter - sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum - sortByField: SalesforceContentDocumentFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentFeedsConnection """ Collection of Salesforce ContentDocumentHistory """ - histories( - filter: SalesforceContentDocumentHistoryConnectionFilter - sortByCustomField: SalesforceContentDocumentHistorySortByFieldEnum - sortByField: SalesforceContentDocumentHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentHistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentHistorysConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentDocumentSubscription """ - contentDocumentSubscriptions( - filter: SalesforceContentDocumentSubscriptionConnectionFilter - sortByCustomField: SalesforceContentDocumentSubscriptionSortByFieldEnum - sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentSubscriptionsConnection + contentDocumentSubscriptions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentSubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentSubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentSubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentSubscriptionsConnection """ Collection of Salesforce ContentFolderMember """ - contentFolderMembers( - filter: SalesforceContentFolderMemberConnectionFilter - sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum - sortByField: SalesforceContentFolderMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentFolderMembersConnection + contentFolderMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentFolderMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentFolderMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentFolderMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentFolderMembersConnection """ Collection of Salesforce ContentNotification """ - contentNotifications( - filter: SalesforceContentNotificationConnectionFilter - sortByCustomField: SalesforceContentNotificationSortByFieldEnum - sortByField: SalesforceContentNotificationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentNotificationsConnection + contentNotifications(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentNotificationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentNotificationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentNotificationsConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce ContentVersionComment """ - contentVersionComments( - filter: SalesforceContentVersionCommentConnectionFilter - sortByCustomField: SalesforceContentVersionCommentSortByFieldEnum - sortByField: SalesforceContentVersionCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionCommentsConnection + contentVersionComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersionComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionCommentsConnection """ Collection of Salesforce ContentWorkspaceDoc """ - contentWorkspaceDocs( - filter: SalesforceContentWorkspaceDocConnectionFilter - sortByCustomField: SalesforceContentWorkspaceDocSortByFieldEnum - sortByField: SalesforceContentWorkspaceDocSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspaceDocsConnection + contentWorkspaceDocs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceDocConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentWorkspaceDocSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceDocSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentWorkspaceDocs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspaceDocsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -221412,368 +231318,537 @@ type SalesforceContentVersion implements OneGraphNode { """ Collection of Salesforce AccountFeed """ - accountFeeds( - filter: SalesforceAccountFeedConnectionFilter - sortByCustomField: SalesforceAccountFeedSortByFieldEnum - sortByField: SalesforceAccountFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountFeedsConnection + accountFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountFeedsConnection """ Collection of Salesforce AssetFeed """ - assetFeeds( - filter: SalesforceAssetFeedConnectionFilter - sortByCustomField: SalesforceAssetFeedSortByFieldEnum - sortByField: SalesforceAssetFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetFeedsConnection + assetFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetFeedsConnection """ Collection of Salesforce AssetRelationshipFeed """ - assetRelationshipFeeds( - filter: SalesforceAssetRelationshipFeedConnectionFilter - sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum - sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetRelationshipFeedsConnection + assetRelationshipFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetRelationshipFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetRelationshipFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetRelationshipFeedsConnection """ Collection of Salesforce CampaignFeed """ - campaignFeeds( - filter: SalesforceCampaignFeedConnectionFilter - sortByCustomField: SalesforceCampaignFeedSortByFieldEnum - sortByField: SalesforceCampaignFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignFeedsConnection + campaignFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CampaignFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignFeedsConnection """ Collection of Salesforce CaseFeed """ - caseFeeds( - filter: SalesforceCaseFeedConnectionFilter - sortByCustomField: SalesforceCaseFeedSortByFieldEnum - sortByField: SalesforceCaseFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseFeedsConnection + caseFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseFeedsConnection """ Collection of Salesforce CollaborationGroupFeed """ - collaborationGroupFeeds( - filter: SalesforceCollaborationGroupFeedConnectionFilter - sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum - sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupFeedsConnection + collaborationGroupFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupFeedsConnection """ Collection of Salesforce ContactFeed """ - contactFeeds( - filter: SalesforceContactFeedConnectionFilter - sortByCustomField: SalesforceContactFeedSortByFieldEnum - sortByField: SalesforceContactFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactFeedsConnection + contactFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContactFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContactFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactFeedsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions( - filter: SalesforceContentDistributionConnectionFilter - sortByCustomField: SalesforceContentDistributionSortByFieldEnum - sortByField: SalesforceContentDistributionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionsConnection + contentDistributions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocument """ - contentDocuments( - filter: SalesforceContentDocumentConnectionFilter - sortByCustomField: SalesforceContentDocumentSortByFieldEnum - sortByField: SalesforceContentDocumentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentsConnection + contentDocuments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentsConnection """ Collection of Salesforce ContentDocumentFeed """ - contentDocumentFeeds( - filter: SalesforceContentDocumentFeedConnectionFilter - sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum - sortByField: SalesforceContentDocumentFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentFeedsConnection + contentDocumentFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentFeedsConnection """ Collection of Salesforce ContentNotification """ - contentNotifications( - filter: SalesforceContentNotificationConnectionFilter - sortByCustomField: SalesforceContentNotificationSortByFieldEnum - sortByField: SalesforceContentNotificationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentNotificationsConnection + contentNotifications(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentNotificationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentNotificationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentNotificationsConnection """ Collection of Salesforce ContentVersionComment """ - contentVersionComments( - filter: SalesforceContentVersionCommentConnectionFilter - sortByCustomField: SalesforceContentVersionCommentSortByFieldEnum - sortByField: SalesforceContentVersionCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionCommentsConnection + contentVersionComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersionComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionCommentsConnection """ Collection of Salesforce ContentVersionHistory """ - histories( - filter: SalesforceContentVersionHistoryConnectionFilter - sortByCustomField: SalesforceContentVersionHistorySortByFieldEnum - sortByField: SalesforceContentVersionHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionHistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersionHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionHistorysConnection """ Collection of Salesforce ContentVersionRating """ - contentVersionRatings( - filter: SalesforceContentVersionRatingConnectionFilter - sortByCustomField: SalesforceContentVersionRatingSortByFieldEnum - sortByField: SalesforceContentVersionRatingSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionRatingsConnection + contentVersionRatings(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionRatingConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionRatingSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionRatingSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersionRatings to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionRatingsConnection """ Collection of Salesforce ContractFeed """ - contractFeeds( - filter: SalesforceContractFeedConnectionFilter - sortByCustomField: SalesforceContractFeedSortByFieldEnum - sortByField: SalesforceContractFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractFeedsConnection + contractFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContractFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContractFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractFeedsConnection """ Collection of Salesforce DashboardComponentFeed """ - dashboardComponentFeeds( - filter: SalesforceDashboardComponentFeedConnectionFilter - sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum - sortByField: SalesforceDashboardComponentFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDashboardComponentFeedsConnection + dashboardComponentFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDashboardComponentFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DashboardComponentFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDashboardComponentFeedsConnection """ Collection of Salesforce DashboardFeed """ - dashboardFeeds( - filter: SalesforceDashboardFeedConnectionFilter - sortByCustomField: SalesforceDashboardFeedSortByFieldEnum - sortByField: SalesforceDashboardFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDashboardFeedsConnection + dashboardFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDashboardFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDashboardFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDashboardFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DashboardFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDashboardFeedsConnection """ Collection of Salesforce EventFeed """ - eventFeeds( - filter: SalesforceEventFeedConnectionFilter - sortByCustomField: SalesforceEventFeedSortByFieldEnum - sortByField: SalesforceEventFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventFeedsConnection + eventFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EventFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventFeedsConnection """ Collection of Salesforce FeedAttachment """ - feedAttachments( - filter: SalesforceFeedAttachmentConnectionFilter - sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum - sortByField: SalesforceFeedAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedAttachmentsConnection + feedAttachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedAttachmentsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce LeadFeed """ - leadFeeds( - filter: SalesforceLeadFeedConnectionFilter - sortByCustomField: SalesforceLeadFeedSortByFieldEnum - sortByField: SalesforceLeadFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadFeedsConnection + leadFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LeadFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadFeedsConnection """ Collection of Salesforce OpportunityFeed """ - opportunityFeeds( - filter: SalesforceOpportunityFeedConnectionFilter - sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum - sortByField: SalesforceOpportunityFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityFeedsConnection + opportunityFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityFeedsConnection """ Collection of Salesforce OrderFeed """ - orderFeeds( - filter: SalesforceOrderFeedConnectionFilter - sortByCustomField: SalesforceOrderFeedSortByFieldEnum - sortByField: SalesforceOrderFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderFeedsConnection + orderFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderFeedsConnection """ Collection of Salesforce OrderItemFeed """ - orderItemFeeds( - filter: SalesforceOrderItemFeedConnectionFilter - sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum - sortByField: SalesforceOrderItemFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderItemFeedsConnection + orderItemFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderItemFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderItemFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderItemFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderItemFeedsConnection """ Collection of Salesforce Product2Feed """ - product2Feeds( - filter: SalesforceProduct2FeedConnectionFilter - sortByCustomField: SalesforceProduct2FeedSortByFieldEnum - sortByField: SalesforceProduct2FeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProduct2FeedsConnection + product2Feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProduct2FeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProduct2FeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProduct2FeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Product2Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProduct2FeedsConnection """ Collection of Salesforce ReportFeed """ - reportFeeds( - filter: SalesforceReportFeedConnectionFilter - sortByCustomField: SalesforceReportFeedSortByFieldEnum - sortByField: SalesforceReportFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceReportFeedsConnection + reportFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceReportFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceReportFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceReportFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ReportFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceReportFeedsConnection """ Collection of Salesforce SiteFeed """ - siteFeeds( - filter: SalesforceSiteFeedConnectionFilter - sortByCustomField: SalesforceSiteFeedSortByFieldEnum - sortByField: SalesforceSiteFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSiteFeedsConnection + siteFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSiteFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSiteFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSiteFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SiteFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSiteFeedsConnection """ Collection of Salesforce SolutionFeed """ - solutionFeeds( - filter: SalesforceSolutionFeedConnectionFilter - sortByCustomField: SalesforceSolutionFeedSortByFieldEnum - sortByField: SalesforceSolutionFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSolutionFeedsConnection + solutionFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSolutionFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSolutionFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSolutionFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SolutionFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSolutionFeedsConnection """ Collection of Salesforce TaskFeed """ - taskFeeds( - filter: SalesforceTaskFeedConnectionFilter - sortByCustomField: SalesforceTaskFeedSortByFieldEnum - sortByField: SalesforceTaskFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTaskFeedsConnection + taskFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TaskFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTaskFeedsConnection """ Collection of Salesforce TopicFeed """ - topicFeeds( - filter: SalesforceTopicFeedConnectionFilter - sortByCustomField: SalesforceTopicFeedSortByFieldEnum - sortByField: SalesforceTopicFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicFeedsConnection + topicFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicFeedsConnection """ Collection of Salesforce UserFeed """ - userFeeds( - filter: SalesforceUserFeedConnectionFilter - sortByCustomField: SalesforceUserFeedSortByFieldEnum - sortByField: SalesforceUserFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserFeedsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserFeedsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -226172,126 +236247,185 @@ type SalesforceTopic implements OneGraphNode { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce CustomBrand """ - customBrands( - filter: SalesforceCustomBrandConnectionFilter - sortByCustomField: SalesforceCustomBrandSortByFieldEnum - sortByField: SalesforceCustomBrandSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomBrandsConnection + customBrands(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomBrandConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomBrandSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CustomBrands to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomBrandsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce KnowledgeableUser """ - knowledgeableUsers( - filter: SalesforceKnowledgeableUserConnectionFilter - sortByCustomField: SalesforceKnowledgeableUserSortByFieldEnum - sortByField: SalesforceKnowledgeableUserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceKnowledgeableUsersConnection + knowledgeableUsers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceKnowledgeableUserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceKnowledgeableUserSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceKnowledgeableUserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of KnowledgeableUsers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceKnowledgeableUsersConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection """ Collection of Salesforce TopicFeed """ - feeds( - filter: SalesforceTopicFeedConnectionFilter - sortByCustomField: SalesforceTopicFeedSortByFieldEnum - sortByField: SalesforceTopicFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicFeedsConnection """ Collection of Salesforce TopicUserEvent """ - topicUserEvents( - filter: SalesforceTopicUserEventConnectionFilter - sortByCustomField: SalesforceTopicUserEventSortByFieldEnum - sortByField: SalesforceTopicUserEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicUserEventsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicUserEvents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicUserEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicUserEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicUserEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicUserEvents to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicUserEventsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -226343,16 +236477,25 @@ type SalesforceContentDocumentLink implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -226612,82 +236755,121 @@ type SalesforceOrganization implements OneGraphNode { """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce CustomBrand """ - customBrands( - filter: SalesforceCustomBrandConnectionFilter - sortByCustomField: SalesforceCustomBrandSortByFieldEnum - sortByField: SalesforceCustomBrandSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomBrandsConnection + customBrands(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomBrandConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomBrandSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CustomBrands to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomBrandsConnection """ Collection of Salesforce EmailTemplate """ - emailTemplates( - filter: SalesforceEmailTemplateConnectionFilter - sortByCustomField: SalesforceEmailTemplateSortByFieldEnum - sortByField: SalesforceEmailTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailTemplatesConnection + emailTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailTemplatesConnection """ Collection of Salesforce Group """ - groups( - filter: SalesforceGroupConnectionFilter - sortByCustomField: SalesforceGroupSortByFieldEnum - sortByField: SalesforceGroupSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceGroupsConnection + groups(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceGroupConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceGroupSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceGroupSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Groups to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceGroupsConnection """ Collection of Salesforce Report """ - reports( - filter: SalesforceReportConnectionFilter - sortByCustomField: SalesforceReportSortByFieldEnum - sortByField: SalesforceReportSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceReportsConnection + reports(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceReportConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceReportSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceReportSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Reports to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceReportsConnection """ Collection of Salesforce Stamp """ - stamps( - filter: SalesforceStampConnectionFilter - sortByCustomField: SalesforceStampSortByFieldEnum - sortByField: SalesforceStampSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceStampsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + stamps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceStampConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceStampSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceStampSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Stamps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceStampsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -226777,258 +236959,377 @@ type SalesforceGroup implements OneGraphNode { """ Collection of Salesforce AccountShare """ - accountShares( - filter: SalesforceAccountShareConnectionFilter - sortByCustomField: SalesforceAccountShareSortByFieldEnum - sortByField: SalesforceAccountShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountSharesConnection + accountShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountSharesConnection """ Collection of Salesforce AssetShare """ - assetShares( - filter: SalesforceAssetShareConnectionFilter - sortByCustomField: SalesforceAssetShareSortByFieldEnum - sortByField: SalesforceAssetShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetSharesConnection + assetShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetSharesConnection """ Collection of Salesforce CampaignShare """ - campaignShares( - filter: SalesforceCampaignShareConnectionFilter - sortByCustomField: SalesforceCampaignShareSortByFieldEnum - sortByField: SalesforceCampaignShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignSharesConnection + campaignShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CampaignShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignSharesConnection """ Collection of Salesforce CaseShare """ - caseShares( - filter: SalesforceCaseShareConnectionFilter - sortByCustomField: SalesforceCaseShareSortByFieldEnum - sortByField: SalesforceCaseShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseSharesConnection + caseShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseSharesConnection """ Collection of Salesforce ContactShare """ - contactShares( - filter: SalesforceContactShareConnectionFilter - sortByCustomField: SalesforceContactShareSortByFieldEnum - sortByField: SalesforceContactShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactSharesConnection + contactShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContactShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContactShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactSharesConnection """ Collection of Salesforce ContentWorkspaceMember """ - contentWorkspaceMembers( - filter: SalesforceContentWorkspaceMemberConnectionFilter - sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum - sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspaceMembersConnection + contentWorkspaceMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspaceMembersConnection """ Collection of Salesforce FlowInterviewShare """ - flowInterviewShares( - filter: SalesforceFlowInterviewShareConnectionFilter - sortByCustomField: SalesforceFlowInterviewShareSortByFieldEnum - sortByField: SalesforceFlowInterviewShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowInterviewSharesConnection + flowInterviewShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowInterviewShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowInterviewShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowInterviewShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowInterviewShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowInterviewSharesConnection """ Collection of Salesforce ForecastShare """ - forecastShares( - filter: SalesforceForecastShareConnectionFilter - sortByCustomField: SalesforceForecastShareSortByFieldEnum - sortByField: SalesforceForecastShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceForecastSharesConnection + forecastShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceForecastShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceForecastShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceForecastShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ForecastShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceForecastSharesConnection """ Collection of Salesforce GroupMember """ - groupMembers( - filter: SalesforceGroupMemberConnectionFilter - sortByCustomField: SalesforceGroupMemberSortByFieldEnum - sortByField: SalesforceGroupMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceGroupMembersConnection + groupMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceGroupMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceGroupMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceGroupMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of GroupMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceGroupMembersConnection """ Collection of Salesforce LeadShare """ - leadShares( - filter: SalesforceLeadShareConnectionFilter - sortByCustomField: SalesforceLeadShareSortByFieldEnum - sortByField: SalesforceLeadShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadSharesConnection + leadShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LeadShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadSharesConnection """ Collection of Salesforce ListEmailShare """ - listEmailShares( - filter: SalesforceListEmailShareConnectionFilter - sortByCustomField: SalesforceListEmailShareSortByFieldEnum - sortByField: SalesforceListEmailShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceListEmailSharesConnection + listEmailShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceListEmailShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceListEmailShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceListEmailShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ListEmailShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceListEmailSharesConnection """ Collection of Salesforce MacroShare """ - macroShares( - filter: SalesforceMacroShareConnectionFilter - sortByCustomField: SalesforceMacroShareSortByFieldEnum - sortByField: SalesforceMacroShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMacroSharesConnection + macroShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMacroShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceMacroShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMacroShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of MacroShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMacroSharesConnection """ Collection of Salesforce OpportunityShare """ - opportunityShares( - filter: SalesforceOpportunityShareConnectionFilter - sortByCustomField: SalesforceOpportunityShareSortByFieldEnum - sortByField: SalesforceOpportunityShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunitySharesConnection + opportunityShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunitySharesConnection """ Collection of Salesforce OrderShare """ - orderShares( - filter: SalesforceOrderShareConnectionFilter - sortByCustomField: SalesforceOrderShareSortByFieldEnum - sortByField: SalesforceOrderShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderSharesConnection + orderShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderSharesConnection """ Collection of Salesforce OrgDeleteRequestShare """ - orgDeleteRequestShares( - filter: SalesforceOrgDeleteRequestShareConnectionFilter - sortByCustomField: SalesforceOrgDeleteRequestShareSortByFieldEnum - sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrgDeleteRequestSharesConnection + orgDeleteRequestShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrgDeleteRequestShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrgDeleteRequestShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrgDeleteRequestShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrgDeleteRequestSharesConnection """ Collection of Salesforce QueueSobject """ - queueSobjects( - filter: SalesforceQueueSobjectConnectionFilter - sortByCustomField: SalesforceQueueSobjectSortByFieldEnum - sortByField: SalesforceQueueSobjectSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceQueueSobjectsConnection + queueSobjects(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceQueueSobjectConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceQueueSobjectSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceQueueSobjectSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of QueueSobjects to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceQueueSobjectsConnection """ Collection of Salesforce QuickTextShare """ - quickTextShares( - filter: SalesforceQuickTextShareConnectionFilter - sortByCustomField: SalesforceQuickTextShareSortByFieldEnum - sortByField: SalesforceQuickTextShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceQuickTextSharesConnection + quickTextShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceQuickTextShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceQuickTextShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceQuickTextShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of QuickTextShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceQuickTextSharesConnection """ Collection of Salesforce StreamingChannelShare """ - streamingChannelShares( - filter: SalesforceStreamingChannelShareConnectionFilter - sortByCustomField: SalesforceStreamingChannelShareSortByFieldEnum - sortByField: SalesforceStreamingChannelShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceStreamingChannelSharesConnection + streamingChannelShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceStreamingChannelShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceStreamingChannelShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceStreamingChannelShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of StreamingChannelShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceStreamingChannelSharesConnection """ Collection of Salesforce TodayGoalShare """ - todayGoalShares( - filter: SalesforceTodayGoalShareConnectionFilter - sortByCustomField: SalesforceTodayGoalShareSortByFieldEnum - sortByField: SalesforceTodayGoalShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTodayGoalSharesConnection + todayGoalShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTodayGoalShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTodayGoalShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTodayGoalShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TodayGoalShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTodayGoalSharesConnection """ Collection of Salesforce User """ - delegatedUsers( - filter: SalesforceUserConnectionFilter - sortByCustomField: SalesforceUserSortByFieldEnum - sortByField: SalesforceUserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUsersConnection + delegatedUsers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Users to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUsersConnection """ Collection of Salesforce UserAppMenuCustomizationShare """ - userAppMenuCustomizationShares( - filter: SalesforceUserAppMenuCustomizationShareConnectionFilter - sortByCustomField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum - sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserAppMenuCustomizationSharesConnection + userAppMenuCustomizationShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserAppMenuCustomizationShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserAppMenuCustomizationShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserAppMenuCustomizationSharesConnection """ Collection of Salesforce UserProvisioningRequestShare """ - userProvisioningRequestShares( - filter: SalesforceUserProvisioningRequestShareConnectionFilter - sortByCustomField: SalesforceUserProvisioningRequestShareSortByFieldEnum - sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningRequestSharesConnection + userProvisioningRequestShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningRequestShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvisioningRequestShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvisioningRequestShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningRequestSharesConnection """ Collection of Salesforce UserShare """ - userShares( - filter: SalesforceUserShareConnectionFilter - sortByCustomField: SalesforceUserShareSortByFieldEnum - sortByField: SalesforceUserShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserSharesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserSharesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -227088,16 +237389,25 @@ type SalesforceForecastShare implements OneGraphNode { """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -227217,49 +237527,73 @@ type SalesforceUserRole implements OneGraphNode { """ Collection of Salesforce ForecastShare """ - forecastShares( - filter: SalesforceForecastShareConnectionFilter - sortByCustomField: SalesforceForecastShareSortByFieldEnum - sortByField: SalesforceForecastShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceForecastSharesConnection + forecastShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceForecastShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceForecastShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceForecastShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ForecastShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceForecastSharesConnection """ Collection of Salesforce Group """ - groups( - filter: SalesforceGroupConnectionFilter - sortByCustomField: SalesforceGroupSortByFieldEnum - sortByField: SalesforceGroupSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceGroupsConnection + groups(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceGroupConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceGroupSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceGroupSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Groups to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceGroupsConnection """ Collection of Salesforce User """ - users( - filter: SalesforceUserConnectionFilter - sortByCustomField: SalesforceUserSortByFieldEnum - sortByField: SalesforceUserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUsersConnection + users(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Users to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUsersConnection """ Collection of Salesforce UserRole """ - userRoles( - filter: SalesforceUserRoleConnectionFilter - sortByCustomField: SalesforceUserRoleSortByFieldEnum - sortByField: SalesforceUserRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserRolesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserRolesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -227969,3470 +238303,5049 @@ type SalesforceUser implements OneGraphNode { """ Collection of Salesforce AcceptedEventRelation """ - acceptedEventRelations( - filter: SalesforceAcceptedEventRelationConnectionFilter - sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum - sortByField: SalesforceAcceptedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAcceptedEventRelationsConnection + acceptedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAcceptedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAcceptedEventRelationsConnection """ Collection of Salesforce Account """ - accounts( - filter: SalesforceAccountConnectionFilter - sortByCustomField: SalesforceAccountSortByFieldEnum - sortByField: SalesforceAccountSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountsConnection + accounts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Accounts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountsConnection """ Collection of Salesforce AccountCleanInfo """ - accountCleanInfos( - filter: SalesforceAccountCleanInfoConnectionFilter - sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum - sortByField: SalesforceAccountCleanInfoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountCleanInfosConnection + accountCleanInfos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountCleanInfoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountCleanInfos to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountCleanInfosConnection """ Collection of Salesforce AccountCleanInfo """ - accountCleanInfoReviewers( - filter: SalesforceAccountCleanInfoConnectionFilter - sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum - sortByField: SalesforceAccountCleanInfoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountCleanInfosConnection + accountCleanInfoReviewers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountCleanInfoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountCleanInfos to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountCleanInfosConnection """ Collection of Salesforce AccountContactRole """ - accountContactRoles( - filter: SalesforceAccountContactRoleConnectionFilter - sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum - sortByField: SalesforceAccountContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountContactRolesConnection + accountContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountContactRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountContactRolesConnection """ Collection of Salesforce AccountFeed """ - accountFeeds( - filter: SalesforceAccountFeedConnectionFilter - sortByCustomField: SalesforceAccountFeedSortByFieldEnum - sortByField: SalesforceAccountFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountFeedsConnection + accountFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountFeedsConnection """ Collection of Salesforce AccountHistory """ - accountHistories( - filter: SalesforceAccountHistoryConnectionFilter - sortByCustomField: SalesforceAccountHistorySortByFieldEnum - sortByField: SalesforceAccountHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountHistorysConnection + accountHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountHistorysConnection """ Collection of Salesforce AccountPartner """ - accountPartners( - filter: SalesforceAccountPartnerConnectionFilter - sortByCustomField: SalesforceAccountPartnerSortByFieldEnum - sortByField: SalesforceAccountPartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountPartnersConnection + accountPartners(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountPartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountPartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountPartnersConnection """ Collection of Salesforce AccountShare """ - accountShares( - filter: SalesforceAccountShareConnectionFilter - sortByCustomField: SalesforceAccountShareSortByFieldEnum - sortByField: SalesforceAccountShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountSharesConnection + accountShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountSharesConnection """ Collection of Salesforce ActionLinkGroupTemplate """ - actionLinkGroupTemplates( - filter: SalesforceActionLinkGroupTemplateConnectionFilter - sortByCustomField: SalesforceActionLinkGroupTemplateSortByFieldEnum - sortByField: SalesforceActionLinkGroupTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceActionLinkGroupTemplatesConnection + actionLinkGroupTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceActionLinkGroupTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceActionLinkGroupTemplateSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceActionLinkGroupTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ActionLinkGroupTemplates to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceActionLinkGroupTemplatesConnection """ Collection of Salesforce ActionLinkTemplate """ - actionLinkTemplates( - filter: SalesforceActionLinkTemplateConnectionFilter - sortByCustomField: SalesforceActionLinkTemplateSortByFieldEnum - sortByField: SalesforceActionLinkTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceActionLinkTemplatesConnection + actionLinkTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceActionLinkTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceActionLinkTemplateSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceActionLinkTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ActionLinkTemplates to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceActionLinkTemplatesConnection """ Collection of Salesforce AdditionalNumber """ - additionalNumbers( - filter: SalesforceAdditionalNumberConnectionFilter - sortByCustomField: SalesforceAdditionalNumberSortByFieldEnum - sortByField: SalesforceAdditionalNumberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAdditionalNumbersConnection + additionalNumbers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAdditionalNumberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAdditionalNumberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAdditionalNumberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AdditionalNumbers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAdditionalNumbersConnection """ Collection of Salesforce Announcement """ - announcements( - filter: SalesforceAnnouncementConnectionFilter - sortByCustomField: SalesforceAnnouncementSortByFieldEnum - sortByField: SalesforceAnnouncementSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAnnouncementsConnection + announcements(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAnnouncementConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAnnouncementSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAnnouncementSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Announcements to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAnnouncementsConnection """ Collection of Salesforce ApexClass """ - apexClasses( - filter: SalesforceApexClassConnectionFilter - sortByCustomField: SalesforceApexClassSortByFieldEnum - sortByField: SalesforceApexClassSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexClasssConnection + apexClasses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexClassConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexClassSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexClassSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexClasses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexClasssConnection """ Collection of Salesforce ApexComponent """ - apexComponents( - filter: SalesforceApexComponentConnectionFilter - sortByCustomField: SalesforceApexComponentSortByFieldEnum - sortByField: SalesforceApexComponentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexComponentsConnection + apexComponents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexComponentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexComponentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexComponentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexComponents to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexComponentsConnection """ Collection of Salesforce ApexEmailNotification """ - apexEmailNotifications( - filter: SalesforceApexEmailNotificationConnectionFilter - sortByCustomField: SalesforceApexEmailNotificationSortByFieldEnum - sortByField: SalesforceApexEmailNotificationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexEmailNotificationsConnection + apexEmailNotifications(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexEmailNotificationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexEmailNotificationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexEmailNotificationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexEmailNotifications to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexEmailNotificationsConnection """ Collection of Salesforce ApexLog """ - apexLogs( - filter: SalesforceApexLogConnectionFilter - sortByCustomField: SalesforceApexLogSortByFieldEnum - sortByField: SalesforceApexLogSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexLogsConnection + apexLogs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexLogConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexLogSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexLogSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexLogs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexLogsConnection """ Collection of Salesforce ApexPage """ - apexPages( - filter: SalesforceApexPageConnectionFilter - sortByCustomField: SalesforceApexPageSortByFieldEnum - sortByField: SalesforceApexPageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexPagesConnection + apexPages(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexPageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexPageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexPageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexPages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexPagesConnection """ Collection of Salesforce ApexTestQueueItem """ - apexTestQueueItems( - filter: SalesforceApexTestQueueItemConnectionFilter - sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum - sortByField: SalesforceApexTestQueueItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestQueueItemsConnection + apexTestQueueItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestQueueItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestQueueItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestQueueItemsConnection """ Collection of Salesforce ApexTestResultLimits """ - apexTestResultLimitsPlural( - filter: SalesforceApexTestResultLimitsConnectionFilter - sortByCustomField: SalesforceApexTestResultLimitsSortByFieldEnum - sortByField: SalesforceApexTestResultLimitsSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestResultLimitssConnection + apexTestResultLimitsPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestResultLimitsConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTestResultLimitsSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestResultLimitsSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTestResultLimits to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestResultLimitssConnection """ Collection of Salesforce ApexTestRunResult """ - apexTestRunResults( - filter: SalesforceApexTestRunResultConnectionFilter - sortByCustomField: SalesforceApexTestRunResultSortByFieldEnum - sortByField: SalesforceApexTestRunResultSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestRunResultsConnection + apexTestRunResults(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestRunResultConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTestRunResultSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestRunResultSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTestRunResults to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestRunResultsConnection """ Collection of Salesforce ApexTestSuite """ - apexTestSuites( - filter: SalesforceApexTestSuiteConnectionFilter - sortByCustomField: SalesforceApexTestSuiteSortByFieldEnum - sortByField: SalesforceApexTestSuiteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTestSuitesConnection + apexTestSuites(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTestSuiteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTestSuiteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTestSuiteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTestSuites to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTestSuitesConnection """ Collection of Salesforce ApexTrigger """ - apexTriggers( - filter: SalesforceApexTriggerConnectionFilter - sortByCustomField: SalesforceApexTriggerSortByFieldEnum - sortByField: SalesforceApexTriggerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceApexTriggersConnection + apexTriggers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceApexTriggerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceApexTriggerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceApexTriggerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ApexTriggers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceApexTriggersConnection """ Collection of Salesforce AppMenuItem """ - appMenuItems( - filter: SalesforceAppMenuItemConnectionFilter - sortByCustomField: SalesforceAppMenuItemSortByFieldEnum - sortByField: SalesforceAppMenuItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAppMenuItemsConnection + appMenuItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAppMenuItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAppMenuItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAppMenuItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AppMenuItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAppMenuItemsConnection """ Collection of Salesforce Asset """ - assets( - filter: SalesforceAssetConnectionFilter - sortByCustomField: SalesforceAssetSortByFieldEnum - sortByField: SalesforceAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetsConnection + assets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Assets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetsConnection """ Collection of Salesforce AssetFeed """ - assetFeeds( - filter: SalesforceAssetFeedConnectionFilter - sortByCustomField: SalesforceAssetFeedSortByFieldEnum - sortByField: SalesforceAssetFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetFeedsConnection + assetFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetFeedsConnection """ Collection of Salesforce AssetHistory """ - assetHistories( - filter: SalesforceAssetHistoryConnectionFilter - sortByCustomField: SalesforceAssetHistorySortByFieldEnum - sortByField: SalesforceAssetHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetHistorysConnection + assetHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetHistorysConnection """ Collection of Salesforce AssetRelationship """ - assetRelationships( - filter: SalesforceAssetRelationshipConnectionFilter - sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum - sortByField: SalesforceAssetRelationshipSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetRelationshipsConnection + assetRelationships(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetRelationshipConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetRelationshipSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetRelationships to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetRelationshipsConnection """ Collection of Salesforce AssetRelationshipFeed """ - assetRelationshipFeeds( - filter: SalesforceAssetRelationshipFeedConnectionFilter - sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum - sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetRelationshipFeedsConnection + assetRelationshipFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetRelationshipFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetRelationshipFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetRelationshipFeedsConnection """ Collection of Salesforce AssetRelationshipHistory """ - assetRelationshipHistories( - filter: SalesforceAssetRelationshipHistoryConnectionFilter - sortByCustomField: SalesforceAssetRelationshipHistorySortByFieldEnum - sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetRelationshipHistorysConnection + assetRelationshipHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetRelationshipHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetRelationshipHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetRelationshipHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetRelationshipHistorysConnection """ Collection of Salesforce AssetShare """ - assetShares( - filter: SalesforceAssetShareConnectionFilter - sortByCustomField: SalesforceAssetShareSortByFieldEnum - sortByField: SalesforceAssetShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetSharesConnection + assetShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssetShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetSharesConnection """ Collection of Salesforce AssignmentRule """ - assignmentRules( - filter: SalesforceAssignmentRuleConnectionFilter - sortByCustomField: SalesforceAssignmentRuleSortByFieldEnum - sortByField: SalesforceAssignmentRuleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssignmentRulesConnection + assignmentRules(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssignmentRuleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssignmentRuleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssignmentRuleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AssignmentRules to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssignmentRulesConnection """ Collection of Salesforce AsyncApexJob """ - asyncApexJobs( - filter: SalesforceAsyncApexJobConnectionFilter - sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum - sortByField: SalesforceAsyncApexJobSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAsyncApexJobsConnection + asyncApexJobs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAsyncApexJobConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAsyncApexJobSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AsyncApexJobs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAsyncApexJobsConnection """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce AuraDefinition """ - auraDefinitions( - filter: SalesforceAuraDefinitionConnectionFilter - sortByCustomField: SalesforceAuraDefinitionSortByFieldEnum - sortByField: SalesforceAuraDefinitionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuraDefinitionsConnection + auraDefinitions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuraDefinitionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAuraDefinitionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuraDefinitionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AuraDefinitions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuraDefinitionsConnection """ Collection of Salesforce AuraDefinitionBundle """ - auraDefinitionBundles( - filter: SalesforceAuraDefinitionBundleConnectionFilter - sortByCustomField: SalesforceAuraDefinitionBundleSortByFieldEnum - sortByField: SalesforceAuraDefinitionBundleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuraDefinitionBundlesConnection + auraDefinitionBundles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuraDefinitionBundleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAuraDefinitionBundleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuraDefinitionBundleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AuraDefinitionBundles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuraDefinitionBundlesConnection """ Collection of Salesforce AuthConfig """ - authConfigs( - filter: SalesforceAuthConfigConnectionFilter - sortByCustomField: SalesforceAuthConfigSortByFieldEnum - sortByField: SalesforceAuthConfigSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthConfigsConnection + authConfigs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthConfigConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAuthConfigSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthConfigSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AuthConfigs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthConfigsConnection """ Collection of Salesforce AuthConfigProviders """ - authConfigProvidersPlural( - filter: SalesforceAuthConfigProvidersConnectionFilter - sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum - sortByField: SalesforceAuthConfigProvidersSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthConfigProviderssConnection + authConfigProvidersPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthConfigProvidersConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthConfigProvidersSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthConfigProviderssConnection """ Collection of Salesforce AuthProvider """ - authProviders( - filter: SalesforceAuthProviderConnectionFilter - sortByCustomField: SalesforceAuthProviderSortByFieldEnum - sortByField: SalesforceAuthProviderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthProvidersConnection + authProviders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthProviderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAuthProviderSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthProviderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AuthProviders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthProvidersConnection """ Collection of Salesforce AuthSession """ - authSessions( - filter: SalesforceAuthSessionConnectionFilter - sortByCustomField: SalesforceAuthSessionSortByFieldEnum - sortByField: SalesforceAuthSessionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAuthSessionsConnection + authSessions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAuthSessionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAuthSessionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAuthSessionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AuthSessions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAuthSessionsConnection """ Collection of Salesforce BackgroundOperation """ - backgroundOperations( - filter: SalesforceBackgroundOperationConnectionFilter - sortByCustomField: SalesforceBackgroundOperationSortByFieldEnum - sortByField: SalesforceBackgroundOperationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceBackgroundOperationsConnection + backgroundOperations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceBackgroundOperationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceBackgroundOperationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceBackgroundOperationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of BackgroundOperations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceBackgroundOperationsConnection """ Collection of Salesforce BrandTemplate """ - brandTemplates( - filter: SalesforceBrandTemplateConnectionFilter - sortByCustomField: SalesforceBrandTemplateSortByFieldEnum - sortByField: SalesforceBrandTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceBrandTemplatesConnection + brandTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceBrandTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceBrandTemplateSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceBrandTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of BrandTemplates to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceBrandTemplatesConnection """ Collection of Salesforce BusinessHours """ - businessHoursPlural( - filter: SalesforceBusinessHoursConnectionFilter - sortByCustomField: SalesforceBusinessHoursSortByFieldEnum - sortByField: SalesforceBusinessHoursSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceBusinessHourssConnection + businessHoursPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceBusinessHoursConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceBusinessHoursSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceBusinessHoursSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of BusinessHours to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceBusinessHourssConnection """ Collection of Salesforce BusinessProcess """ - businessProcesses( - filter: SalesforceBusinessProcessConnectionFilter - sortByCustomField: SalesforceBusinessProcessSortByFieldEnum - sortByField: SalesforceBusinessProcessSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceBusinessProcesssConnection + businessProcesses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceBusinessProcessConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceBusinessProcessSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceBusinessProcessSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of BusinessProcesses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceBusinessProcesssConnection """ Collection of Salesforce CallCenter """ - callCenters( - filter: SalesforceCallCenterConnectionFilter - sortByCustomField: SalesforceCallCenterSortByFieldEnum - sortByField: SalesforceCallCenterSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCallCentersConnection + callCenters(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCallCenterConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCallCenterSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCallCenterSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CallCenters to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCallCentersConnection """ Collection of Salesforce Campaign """ - campaigns( - filter: SalesforceCampaignConnectionFilter - sortByCustomField: SalesforceCampaignSortByFieldEnum - sortByField: SalesforceCampaignSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignsConnection + campaigns(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Campaigns to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignsConnection """ Collection of Salesforce CampaignFeed """ - campaignFeeds( - filter: SalesforceCampaignFeedConnectionFilter - sortByCustomField: SalesforceCampaignFeedSortByFieldEnum - sortByField: SalesforceCampaignFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignFeedsConnection + campaignFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CampaignFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignFeedsConnection """ Collection of Salesforce CampaignHistory """ - campaignHistories( - filter: SalesforceCampaignHistoryConnectionFilter - sortByCustomField: SalesforceCampaignHistorySortByFieldEnum - sortByField: SalesforceCampaignHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignHistorysConnection + campaignHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CampaignHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignHistorysConnection """ Collection of Salesforce CampaignMember """ - campaignMembers( - filter: SalesforceCampaignMemberConnectionFilter - sortByCustomField: SalesforceCampaignMemberSortByFieldEnum - sortByField: SalesforceCampaignMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignMembersConnection + campaignMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignMembersConnection """ Collection of Salesforce CampaignMemberStatus """ - campaignMemberStatuses( - filter: SalesforceCampaignMemberStatusConnectionFilter - sortByCustomField: SalesforceCampaignMemberStatusSortByFieldEnum - sortByField: SalesforceCampaignMemberStatusSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignMemberStatussConnection + campaignMemberStatuses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignMemberStatusConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignMemberStatusSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignMemberStatusSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CampaignMemberStatuses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignMemberStatussConnection """ Collection of Salesforce CampaignShare """ - campaignShares( - filter: SalesforceCampaignShareConnectionFilter - sortByCustomField: SalesforceCampaignShareSortByFieldEnum - sortByField: SalesforceCampaignShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignSharesConnection + campaignShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CampaignShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignSharesConnection """ Collection of Salesforce Case """ - cases( - filter: SalesforceCaseConnectionFilter - sortByCustomField: SalesforceCaseSortByFieldEnum - sortByField: SalesforceCaseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCasesConnection + cases(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Cases to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCasesConnection """ Collection of Salesforce CaseComment """ - caseComments( - filter: SalesforceCaseCommentConnectionFilter - sortByCustomField: SalesforceCaseCommentSortByFieldEnum - sortByField: SalesforceCaseCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseCommentsConnection + caseComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseCommentsConnection """ Collection of Salesforce CaseContactRole """ - caseContactRoles( - filter: SalesforceCaseContactRoleConnectionFilter - sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum - sortByField: SalesforceCaseContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseContactRolesConnection + caseContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseContactRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseContactRolesConnection """ Collection of Salesforce CaseFeed """ - caseFeeds( - filter: SalesforceCaseFeedConnectionFilter - sortByCustomField: SalesforceCaseFeedSortByFieldEnum - sortByField: SalesforceCaseFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseFeedsConnection + caseFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseFeedsConnection """ Collection of Salesforce CaseHistory """ - caseHistories( - filter: SalesforceCaseHistoryConnectionFilter - sortByCustomField: SalesforceCaseHistorySortByFieldEnum - sortByField: SalesforceCaseHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseHistorysConnection + caseHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseHistorysConnection """ Collection of Salesforce CaseShare """ - caseShares( - filter: SalesforceCaseShareConnectionFilter - sortByCustomField: SalesforceCaseShareSortByFieldEnum - sortByField: SalesforceCaseShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseSharesConnection + caseShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseSharesConnection """ Collection of Salesforce CaseSolution """ - caseSolutions( - filter: SalesforceCaseSolutionConnectionFilter - sortByCustomField: SalesforceCaseSolutionSortByFieldEnum - sortByField: SalesforceCaseSolutionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseSolutionsConnection + caseSolutions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseSolutionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseSolutionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseSolutionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseSolutions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseSolutionsConnection """ Collection of Salesforce CaseStatus """ - caseStatuses( - filter: SalesforceCaseStatusConnectionFilter - sortByCustomField: SalesforceCaseStatusSortByFieldEnum - sortByField: SalesforceCaseStatusSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseStatussConnection + caseStatuses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseStatusConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseStatusSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseStatusSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseStatuses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseStatussConnection """ Collection of Salesforce CaseTeamMember """ - caseTeamMembers( - filter: SalesforceCaseTeamMemberConnectionFilter - sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum - sortByField: SalesforceCaseTeamMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseTeamMembersConnection + caseTeamMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseTeamMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseTeamMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseTeamMembersConnection """ Collection of Salesforce CaseTeamRole """ - caseTeamRoles( - filter: SalesforceCaseTeamRoleConnectionFilter - sortByCustomField: SalesforceCaseTeamRoleSortByFieldEnum - sortByField: SalesforceCaseTeamRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseTeamRolesConnection + caseTeamRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseTeamRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseTeamRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseTeamRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseTeamRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseTeamRolesConnection """ Collection of Salesforce CaseTeamTemplate """ - caseTeamTemplates( - filter: SalesforceCaseTeamTemplateConnectionFilter - sortByCustomField: SalesforceCaseTeamTemplateSortByFieldEnum - sortByField: SalesforceCaseTeamTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseTeamTemplatesConnection + caseTeamTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseTeamTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseTeamTemplateSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseTeamTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseTeamTemplates to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseTeamTemplatesConnection """ Collection of Salesforce CaseTeamTemplateMember """ - caseTeamTemplateMembers( - filter: SalesforceCaseTeamTemplateMemberConnectionFilter - sortByCustomField: SalesforceCaseTeamTemplateMemberSortByFieldEnum - sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseTeamTemplateMembersConnection + caseTeamTemplateMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseTeamTemplateMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseTeamTemplateMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseTeamTemplateMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseTeamTemplateMembersConnection """ Collection of Salesforce CaseTeamTemplateRecord """ - caseTeamTemplateRecords( - filter: SalesforceCaseTeamTemplateRecordConnectionFilter - sortByCustomField: SalesforceCaseTeamTemplateRecordSortByFieldEnum - sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseTeamTemplateRecordsConnection + caseTeamTemplateRecords(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseTeamTemplateRecordConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseTeamTemplateRecordSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseTeamTemplateRecords to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseTeamTemplateRecordsConnection """ Collection of Salesforce CategoryData """ - categoryDatas( - filter: SalesforceCategoryDataConnectionFilter - sortByCustomField: SalesforceCategoryDataSortByFieldEnum - sortByField: SalesforceCategoryDataSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCategoryDatasConnection + categoryDatas(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCategoryDataConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCategoryDataSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCategoryDataSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CategoryDatas to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCategoryDatasConnection """ Collection of Salesforce CategoryNode """ - categoryNodes( - filter: SalesforceCategoryNodeConnectionFilter - sortByCustomField: SalesforceCategoryNodeSortByFieldEnum - sortByField: SalesforceCategoryNodeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCategoryNodesConnection + categoryNodes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCategoryNodeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCategoryNodeSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCategoryNodeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CategoryNodes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCategoryNodesConnection """ Collection of Salesforce ChatterActivity """ - chatterActivities( - filter: SalesforceChatterActivityConnectionFilter - sortByCustomField: SalesforceChatterActivitySortByFieldEnum - sortByField: SalesforceChatterActivitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceChatterActivitysConnection + chatterActivities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceChatterActivityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceChatterActivitySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceChatterActivitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ChatterActivities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceChatterActivitysConnection """ Collection of Salesforce ChatterExtension """ - chatterExtensions( - filter: SalesforceChatterExtensionConnectionFilter - sortByCustomField: SalesforceChatterExtensionSortByFieldEnum - sortByField: SalesforceChatterExtensionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceChatterExtensionsConnection + chatterExtensions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceChatterExtensionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceChatterExtensionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceChatterExtensionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ChatterExtensions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceChatterExtensionsConnection """ Collection of Salesforce ChatterExtensionConfig """ - chatterExtensionConfigs( - filter: SalesforceChatterExtensionConfigConnectionFilter - sortByCustomField: SalesforceChatterExtensionConfigSortByFieldEnum - sortByField: SalesforceChatterExtensionConfigSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceChatterExtensionConfigsConnection + chatterExtensionConfigs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceChatterExtensionConfigConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceChatterExtensionConfigSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceChatterExtensionConfigSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ChatterExtensionConfigs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceChatterExtensionConfigsConnection """ Collection of Salesforce ClientBrowser """ - clientBrowsers( - filter: SalesforceClientBrowserConnectionFilter - sortByCustomField: SalesforceClientBrowserSortByFieldEnum - sortByField: SalesforceClientBrowserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceClientBrowsersConnection + clientBrowsers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceClientBrowserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceClientBrowserSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceClientBrowserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ClientBrowsers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceClientBrowsersConnection """ Collection of Salesforce CollaborationGroup """ - collaborationGroups( - filter: SalesforceCollaborationGroupConnectionFilter - sortByCustomField: SalesforceCollaborationGroupSortByFieldEnum - sortByField: SalesforceCollaborationGroupSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupsConnection + collaborationGroups(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroups to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupsConnection """ Collection of Salesforce CollaborationGroupFeed """ - collaborationGroupFeeds( - filter: SalesforceCollaborationGroupFeedConnectionFilter - sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum - sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupFeedsConnection + collaborationGroupFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupFeedsConnection """ Collection of Salesforce CollaborationGroupMember """ - collaborationGroupMembers( - filter: SalesforceCollaborationGroupMemberConnectionFilter - sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum - sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupMembersConnection + collaborationGroupMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupMembersConnection """ Collection of Salesforce CollaborationGroupMember """ - groupMemberships( - filter: SalesforceCollaborationGroupMemberConnectionFilter - sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum - sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupMembersConnection + groupMemberships(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupMembersConnection """ Collection of Salesforce CollaborationGroupMemberRequest """ - collaborationGroupMemberRequests( - filter: SalesforceCollaborationGroupMemberRequestConnectionFilter - sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum - sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupMemberRequestsConnection + collaborationGroupMemberRequests(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupMemberRequests to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupMemberRequestsConnection """ Collection of Salesforce CollaborationGroupMemberRequest """ - groupMembershipRequests( - filter: SalesforceCollaborationGroupMemberRequestConnectionFilter - sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum - sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupMemberRequestsConnection + groupMembershipRequests(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupMemberRequestConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupMemberRequests to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupMemberRequestsConnection """ Collection of Salesforce CollaborationGroupRecord """ - collaborationGroupRecords( - filter: SalesforceCollaborationGroupRecordConnectionFilter - sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum - sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupRecordsConnection + collaborationGroupRecords(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce CollaborationInvitation """ - collaborationInvitations( - filter: SalesforceCollaborationInvitationConnectionFilter - sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum - sortByField: SalesforceCollaborationInvitationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationInvitationsConnection + collaborationInvitations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationInvitationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationInvitationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationInvitations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationInvitationsConnection """ Collection of Salesforce Community """ - communities( - filter: SalesforceCommunityConnectionFilter - sortByCustomField: SalesforceCommunitySortByFieldEnum - sortByField: SalesforceCommunitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCommunitysConnection + communities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCommunityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCommunitySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCommunitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Communities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCommunitysConnection """ Collection of Salesforce ConnectedApplication """ - connectedApplications( - filter: SalesforceConnectedApplicationConnectionFilter - sortByCustomField: SalesforceConnectedApplicationSortByFieldEnum - sortByField: SalesforceConnectedApplicationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceConnectedApplicationsConnection + connectedApplications(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceConnectedApplicationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceConnectedApplicationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceConnectedApplicationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ConnectedApplications to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceConnectedApplicationsConnection """ Collection of Salesforce Contact """ - contacts( - filter: SalesforceContactConnectionFilter - sortByCustomField: SalesforceContactSortByFieldEnum - sortByField: SalesforceContactSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactsConnection + contacts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContactSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contacts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactsConnection """ Collection of Salesforce ContactCleanInfo """ - contactCleanInfos( - filter: SalesforceContactCleanInfoConnectionFilter - sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum - sortByField: SalesforceContactCleanInfoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactCleanInfosConnection + contactCleanInfos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactCleanInfoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactCleanInfoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContactCleanInfos to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactCleanInfosConnection """ Collection of Salesforce ContactCleanInfo """ - contactCleanInfoReviewers( - filter: SalesforceContactCleanInfoConnectionFilter - sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum - sortByField: SalesforceContactCleanInfoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactCleanInfosConnection + contactCleanInfoReviewers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactCleanInfoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactCleanInfoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContactCleanInfos to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactCleanInfosConnection """ Collection of Salesforce ContactFeed """ - contactFeeds( - filter: SalesforceContactFeedConnectionFilter - sortByCustomField: SalesforceContactFeedSortByFieldEnum - sortByField: SalesforceContactFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactFeedsConnection + contactFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContactFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContactFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactFeedsConnection """ Collection of Salesforce ContactHistory """ - contactHistories( - filter: SalesforceContactHistoryConnectionFilter - sortByCustomField: SalesforceContactHistorySortByFieldEnum - sortByField: SalesforceContactHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactHistorysConnection + contactHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContactHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContactHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactHistorysConnection """ Collection of Salesforce ContactShare """ - contactShares( - filter: SalesforceContactShareConnectionFilter - sortByCustomField: SalesforceContactShareSortByFieldEnum - sortByField: SalesforceContactShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactSharesConnection + contactShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContactShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContactShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactSharesConnection """ Collection of Salesforce ContentAsset """ - contentAssets( - filter: SalesforceContentAssetConnectionFilter - sortByCustomField: SalesforceContentAssetSortByFieldEnum - sortByField: SalesforceContentAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentAssetsConnection + contentAssets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentAssetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentAssets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentAssetsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions( - filter: SalesforceContentDistributionConnectionFilter - sortByCustomField: SalesforceContentDistributionSortByFieldEnum - sortByField: SalesforceContentDistributionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionsConnection + contentDistributions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDistributionView """ - contentDistributionViews( - filter: SalesforceContentDistributionViewConnectionFilter - sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum - sortByField: SalesforceContentDistributionViewSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionViewsConnection + contentDistributionViews(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionViewConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionViewSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDistributionViews to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionViewsConnection """ Collection of Salesforce ContentDocument """ - contentDocuments( - filter: SalesforceContentDocumentConnectionFilter - sortByCustomField: SalesforceContentDocumentSortByFieldEnum - sortByField: SalesforceContentDocumentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentsConnection + contentDocuments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentsConnection """ Collection of Salesforce ContentDocumentFeed """ - contentDocumentFeeds( - filter: SalesforceContentDocumentFeedConnectionFilter - sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum - sortByField: SalesforceContentDocumentFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentFeedsConnection + contentDocumentFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentFeedsConnection """ Collection of Salesforce ContentDocumentHistory """ - contentDocumentHistories( - filter: SalesforceContentDocumentHistoryConnectionFilter - sortByCustomField: SalesforceContentDocumentHistorySortByFieldEnum - sortByField: SalesforceContentDocumentHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentHistorysConnection + contentDocumentHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentHistorysConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentDocumentSubscription """ - contentDocumentSubscriptions( - filter: SalesforceContentDocumentSubscriptionConnectionFilter - sortByCustomField: SalesforceContentDocumentSubscriptionSortByFieldEnum - sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentSubscriptionsConnection + contentDocumentSubscriptions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentSubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentSubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentSubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentSubscriptionsConnection """ Collection of Salesforce ContentFolder """ - contentFolders( - filter: SalesforceContentFolderConnectionFilter - sortByCustomField: SalesforceContentFolderSortByFieldEnum - sortByField: SalesforceContentFolderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentFoldersConnection + contentFolders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentFolderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentFolderSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentFolderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentFolders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentFoldersConnection """ Collection of Salesforce ContentFolderItem """ - contentFolderItems( - filter: SalesforceContentFolderItemConnectionFilter - sortByCustomField: SalesforceContentFolderItemSortByFieldEnum - sortByField: SalesforceContentFolderItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentFolderItemsConnection + contentFolderItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentFolderItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentFolderItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentFolderItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentFolderItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentFolderItemsConnection """ Collection of Salesforce ContentFolderMember """ - contentFolderMembers( - filter: SalesforceContentFolderMemberConnectionFilter - sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum - sortByField: SalesforceContentFolderMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentFolderMembersConnection + contentFolderMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentFolderMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentFolderMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentFolderMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentFolderMembersConnection """ Collection of Salesforce ContentNotification """ - contentNotifications( - filter: SalesforceContentNotificationConnectionFilter - sortByCustomField: SalesforceContentNotificationSortByFieldEnum - sortByField: SalesforceContentNotificationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentNotificationsConnection + contentNotifications(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentNotificationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentNotificationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentNotificationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentNotificationsConnection """ Collection of Salesforce ContentTagSubscription """ - contentTagSubscriptions( - filter: SalesforceContentTagSubscriptionConnectionFilter - sortByCustomField: SalesforceContentTagSubscriptionSortByFieldEnum - sortByField: SalesforceContentTagSubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentTagSubscriptionsConnection + contentTagSubscriptions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentTagSubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentTagSubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentTagSubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentTagSubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentTagSubscriptionsConnection """ Collection of Salesforce ContentUserSubscription """ - contentUserSubscriptions( - filter: SalesforceContentUserSubscriptionConnectionFilter - sortByCustomField: SalesforceContentUserSubscriptionSortByFieldEnum - sortByField: SalesforceContentUserSubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentUserSubscriptionsConnection + contentUserSubscriptions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentUserSubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentUserSubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentUserSubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentUserSubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentUserSubscriptionsConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce ContentVersionHistory """ - contentVersionHistories( - filter: SalesforceContentVersionHistoryConnectionFilter - sortByCustomField: SalesforceContentVersionHistorySortByFieldEnum - sortByField: SalesforceContentVersionHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionHistorysConnection + contentVersionHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersionHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionHistorysConnection """ Collection of Salesforce ContentVersionRating """ - contentVersionRatings( - filter: SalesforceContentVersionRatingConnectionFilter - sortByCustomField: SalesforceContentVersionRatingSortByFieldEnum - sortByField: SalesforceContentVersionRatingSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionRatingsConnection + contentVersionRatings(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionRatingConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionRatingSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionRatingSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersionRatings to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionRatingsConnection """ Collection of Salesforce ContentWorkspace """ - contentWorkspaces( - filter: SalesforceContentWorkspaceConnectionFilter - sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum - sortByField: SalesforceContentWorkspaceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspacesConnection + contentWorkspaces(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentWorkspaces to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspacesConnection """ Collection of Salesforce ContentWorkspaceMember """ - contentWorkspaceMembers( - filter: SalesforceContentWorkspaceMemberConnectionFilter - sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum - sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspaceMembersConnection + contentWorkspaceMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspaceMembersConnection """ Collection of Salesforce ContentWorkspacePermission """ - contentWorkspacePermissions( - filter: SalesforceContentWorkspacePermissionConnectionFilter - sortByCustomField: SalesforceContentWorkspacePermissionSortByFieldEnum - sortByField: SalesforceContentWorkspacePermissionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspacePermissionsConnection + contentWorkspacePermissions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspacePermissionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentWorkspacePermissionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspacePermissionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentWorkspacePermissions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspacePermissionsConnection """ Collection of Salesforce ContentWorkspaceSubscription """ - contentWorkspaceSubscriptions( - filter: SalesforceContentWorkspaceSubscriptionConnectionFilter - sortByCustomField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum - sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentWorkspaceSubscriptionsConnection + contentWorkspaceSubscriptions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentWorkspaceSubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentWorkspaceSubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentWorkspaceSubscriptionsConnection """ Collection of Salesforce Contract """ - contracts( - filter: SalesforceContractConnectionFilter - sortByCustomField: SalesforceContractSortByFieldEnum - sortByField: SalesforceContractSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractsConnection + contracts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContractSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contracts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractsConnection """ Collection of Salesforce Contract """ - contractsSigned( - filter: SalesforceContractConnectionFilter - sortByCustomField: SalesforceContractSortByFieldEnum - sortByField: SalesforceContractSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractsConnection + contractsSigned(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContractSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contracts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractsConnection """ Collection of Salesforce ContractContactRole """ - contractContactRoles( - filter: SalesforceContractContactRoleConnectionFilter - sortByCustomField: SalesforceContractContactRoleSortByFieldEnum - sortByField: SalesforceContractContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractContactRolesConnection + contractContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContractContactRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContractContactRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractContactRolesConnection """ Collection of Salesforce ContractFeed """ - contractFeeds( - filter: SalesforceContractFeedConnectionFilter - sortByCustomField: SalesforceContractFeedSortByFieldEnum - sortByField: SalesforceContractFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractFeedsConnection + contractFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContractFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContractFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractFeedsConnection """ Collection of Salesforce ContractHistory """ - contractHistories( - filter: SalesforceContractHistoryConnectionFilter - sortByCustomField: SalesforceContractHistorySortByFieldEnum - sortByField: SalesforceContractHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractHistorysConnection + contractHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContractHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContractHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractHistorysConnection """ Collection of Salesforce ContractStatus """ - contractStatuses( - filter: SalesforceContractStatusConnectionFilter - sortByCustomField: SalesforceContractStatusSortByFieldEnum - sortByField: SalesforceContractStatusSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractStatussConnection + contractStatuses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractStatusConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContractStatusSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractStatusSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContractStatuses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractStatussConnection """ Collection of Salesforce CorsWhitelistEntry """ - corsWhitelistEntries( - filter: SalesforceCorsWhitelistEntryConnectionFilter - sortByCustomField: SalesforceCorsWhitelistEntrySortByFieldEnum - sortByField: SalesforceCorsWhitelistEntrySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCorsWhitelistEntrysConnection + corsWhitelistEntries(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCorsWhitelistEntryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCorsWhitelistEntrySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCorsWhitelistEntrySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CorsWhitelistEntries to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCorsWhitelistEntrysConnection """ Collection of Salesforce CronTrigger """ - cronTriggers( - filter: SalesforceCronTriggerConnectionFilter - sortByCustomField: SalesforceCronTriggerSortByFieldEnum - sortByField: SalesforceCronTriggerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCronTriggersConnection + cronTriggers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCronTriggerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCronTriggerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCronTriggerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CronTriggers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCronTriggersConnection """ Collection of Salesforce CspTrustedSite """ - cspTrustedSites( - filter: SalesforceCspTrustedSiteConnectionFilter - sortByCustomField: SalesforceCspTrustedSiteSortByFieldEnum - sortByField: SalesforceCspTrustedSiteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCspTrustedSitesConnection + cspTrustedSites(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCspTrustedSiteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCspTrustedSiteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCspTrustedSiteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CspTrustedSites to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCspTrustedSitesConnection """ Collection of Salesforce CustomBrand """ - customBrands( - filter: SalesforceCustomBrandConnectionFilter - sortByCustomField: SalesforceCustomBrandSortByFieldEnum - sortByField: SalesforceCustomBrandSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomBrandsConnection + customBrands(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomBrandConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCustomBrandSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomBrandSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CustomBrands to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomBrandsConnection """ Collection of Salesforce CustomBrandAsset """ - customBrandAssets( - filter: SalesforceCustomBrandAssetConnectionFilter - sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum - sortByField: SalesforceCustomBrandAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomBrandAssetsConnection + customBrandAssets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomBrandAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomBrandAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomBrandAssetsConnection """ Collection of Salesforce CustomPermission """ - customPermissions( - filter: SalesforceCustomPermissionConnectionFilter - sortByCustomField: SalesforceCustomPermissionSortByFieldEnum - sortByField: SalesforceCustomPermissionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomPermissionsConnection + customPermissions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomPermissionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCustomPermissionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomPermissionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CustomPermissions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomPermissionsConnection """ Collection of Salesforce CustomPermissionDependency """ - customPermissionDependencies( - filter: SalesforceCustomPermissionDependencyConnectionFilter - sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum - sortByField: SalesforceCustomPermissionDependencySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCustomPermissionDependencysConnection + customPermissionDependencies(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCustomPermissionDependencyConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCustomPermissionDependencySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CustomPermissionDependencies to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCustomPermissionDependencysConnection """ Collection of Salesforce DandBCompany """ - dandBCompanies( - filter: SalesforceDandBCompanyConnectionFilter - sortByCustomField: SalesforceDandBCompanySortByFieldEnum - sortByField: SalesforceDandBCompanySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDandBCompanysConnection + dandBCompanies(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDandBCompanyConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDandBCompanySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDandBCompanySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DandBCompanies to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDandBCompanysConnection """ Collection of Salesforce Dashboard """ - dashboards( - filter: SalesforceDashboardConnectionFilter - sortByCustomField: SalesforceDashboardSortByFieldEnum - sortByField: SalesforceDashboardSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDashboardsConnection + dashboards(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDashboardConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDashboardSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDashboardSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Dashboards to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDashboardsConnection """ Collection of Salesforce DashboardComponentFeed """ - dashboardComponentFeeds( - filter: SalesforceDashboardComponentFeedConnectionFilter - sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum - sortByField: SalesforceDashboardComponentFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDashboardComponentFeedsConnection + dashboardComponentFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDashboardComponentFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDashboardComponentFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DashboardComponentFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDashboardComponentFeedsConnection """ Collection of Salesforce DashboardFeed """ - dashboardFeeds( - filter: SalesforceDashboardFeedConnectionFilter - sortByCustomField: SalesforceDashboardFeedSortByFieldEnum - sortByField: SalesforceDashboardFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDashboardFeedsConnection + dashboardFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDashboardFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDashboardFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDashboardFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DashboardFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDashboardFeedsConnection """ Collection of Salesforce DataAssessmentFieldMetric """ - dataAssessmentFieldMetrics( - filter: SalesforceDataAssessmentFieldMetricConnectionFilter - sortByCustomField: SalesforceDataAssessmentFieldMetricSortByFieldEnum - sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDataAssessmentFieldMetricsConnection + dataAssessmentFieldMetrics(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDataAssessmentFieldMetricConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDataAssessmentFieldMetricSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DataAssessmentFieldMetrics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDataAssessmentFieldMetricsConnection """ Collection of Salesforce DataAssessmentMetric """ - dataAssessmentMetrics( - filter: SalesforceDataAssessmentMetricConnectionFilter - sortByCustomField: SalesforceDataAssessmentMetricSortByFieldEnum - sortByField: SalesforceDataAssessmentMetricSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDataAssessmentMetricsConnection + dataAssessmentMetrics(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDataAssessmentMetricConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDataAssessmentMetricSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDataAssessmentMetricSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DataAssessmentMetrics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDataAssessmentMetricsConnection """ Collection of Salesforce DataAssessmentValueMetric """ - dataAssessmentValueMetrics( - filter: SalesforceDataAssessmentValueMetricConnectionFilter - sortByCustomField: SalesforceDataAssessmentValueMetricSortByFieldEnum - sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDataAssessmentValueMetricsConnection + dataAssessmentValueMetrics(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDataAssessmentValueMetricConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDataAssessmentValueMetricSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DataAssessmentValueMetrics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDataAssessmentValueMetricsConnection """ Collection of Salesforce DatacloudOwnedEntity """ - datacloudOwnedEntities( - filter: SalesforceDatacloudOwnedEntityConnectionFilter - sortByCustomField: SalesforceDatacloudOwnedEntitySortByFieldEnum - sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDatacloudOwnedEntitysConnection + datacloudOwnedEntities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDatacloudOwnedEntityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDatacloudOwnedEntitySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DatacloudOwnedEntities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDatacloudOwnedEntitysConnection """ Collection of Salesforce DatacloudPurchaseUsage """ - datacloudPurchaseUsages( - filter: SalesforceDatacloudPurchaseUsageConnectionFilter - sortByCustomField: SalesforceDatacloudPurchaseUsageSortByFieldEnum - sortByField: SalesforceDatacloudPurchaseUsageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDatacloudPurchaseUsagesConnection + datacloudPurchaseUsages(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDatacloudPurchaseUsageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDatacloudPurchaseUsageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDatacloudPurchaseUsageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DatacloudPurchaseUsages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDatacloudPurchaseUsagesConnection """ Collection of Salesforce DeclinedEventRelation """ - declinedEventRelations( - filter: SalesforceDeclinedEventRelationConnectionFilter - sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum - sortByField: SalesforceDeclinedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDeclinedEventRelationsConnection + declinedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDeclinedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDeclinedEventRelationsConnection """ Collection of Salesforce Document """ - documents( - filter: SalesforceDocumentConnectionFilter - sortByCustomField: SalesforceDocumentSortByFieldEnum - sortByField: SalesforceDocumentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDocumentsConnection + documents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDocumentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDocumentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDocumentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Documents to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDocumentsConnection """ Collection of Salesforce DocumentAttachmentMap """ - documentAttachmentMaps( - filter: SalesforceDocumentAttachmentMapConnectionFilter - sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum - sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDocumentAttachmentMapsConnection + documentAttachmentMaps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDocumentAttachmentMapConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DocumentAttachmentMaps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDocumentAttachmentMapsConnection """ Collection of Salesforce Domain """ - domains( - filter: SalesforceDomainConnectionFilter - sortByCustomField: SalesforceDomainSortByFieldEnum - sortByField: SalesforceDomainSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDomainsConnection + domains(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDomainConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDomainSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDomainSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Domains to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDomainsConnection """ Collection of Salesforce DomainSite """ - domainSites( - filter: SalesforceDomainSiteConnectionFilter - sortByCustomField: SalesforceDomainSiteSortByFieldEnum - sortByField: SalesforceDomainSiteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDomainSitesConnection + domainSites(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDomainSiteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDomainSiteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDomainSiteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DomainSites to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDomainSitesConnection """ Collection of Salesforce DuplicateRecordItem """ - duplicateRecordItems( - filter: SalesforceDuplicateRecordItemConnectionFilter - sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum - sortByField: SalesforceDuplicateRecordItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDuplicateRecordItemsConnection + duplicateRecordItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDuplicateRecordItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDuplicateRecordItemsConnection """ Collection of Salesforce DuplicateRecordSet """ - duplicateRecordSets( - filter: SalesforceDuplicateRecordSetConnectionFilter - sortByCustomField: SalesforceDuplicateRecordSetSortByFieldEnum - sortByField: SalesforceDuplicateRecordSetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDuplicateRecordSetsConnection + duplicateRecordSets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDuplicateRecordSetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDuplicateRecordSetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDuplicateRecordSetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DuplicateRecordSets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDuplicateRecordSetsConnection """ Collection of Salesforce DuplicateRule """ - duplicateRules( - filter: SalesforceDuplicateRuleConnectionFilter - sortByCustomField: SalesforceDuplicateRuleSortByFieldEnum - sortByField: SalesforceDuplicateRuleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDuplicateRulesConnection + duplicateRules(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDuplicateRuleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDuplicateRuleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDuplicateRuleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DuplicateRules to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDuplicateRulesConnection """ Collection of Salesforce EmailCapture """ - emailCaptures( - filter: SalesforceEmailCaptureConnectionFilter - sortByCustomField: SalesforceEmailCaptureSortByFieldEnum - sortByField: SalesforceEmailCaptureSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailCapturesConnection + emailCaptures(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailCaptureConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailCaptureSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailCaptureSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailCaptures to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailCapturesConnection """ Collection of Salesforce EmailDomainKey """ - emailDomainKeys( - filter: SalesforceEmailDomainKeyConnectionFilter - sortByCustomField: SalesforceEmailDomainKeySortByFieldEnum - sortByField: SalesforceEmailDomainKeySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailDomainKeysConnection + emailDomainKeys(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailDomainKeyConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailDomainKeySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailDomainKeySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailDomainKeys to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailDomainKeysConnection """ Collection of Salesforce EmailMessage """ - emailMessages( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: SalesforceEmailMessageSortByFieldEnum - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emailMessages(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce EmailMessageRelation """ - emailMessageRelations( - filter: SalesforceEmailMessageRelationConnectionFilter - sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum - sortByField: SalesforceEmailMessageRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessageRelationsConnection + emailMessageRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessageRelationsConnection """ Collection of Salesforce EmailServicesAddress """ - emailServicesAddresses( - filter: SalesforceEmailServicesAddressConnectionFilter - sortByCustomField: SalesforceEmailServicesAddressSortByFieldEnum - sortByField: SalesforceEmailServicesAddressSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailServicesAddresssConnection + emailServicesAddresses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailServicesAddressConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailServicesAddressSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailServicesAddressSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailServicesAddresses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailServicesAddresssConnection """ Collection of Salesforce EmailServicesFunction """ - emailServicesFunctions( - filter: SalesforceEmailServicesFunctionConnectionFilter - sortByCustomField: SalesforceEmailServicesFunctionSortByFieldEnum - sortByField: SalesforceEmailServicesFunctionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailServicesFunctionsConnection + emailServicesFunctions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailServicesFunctionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailServicesFunctionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailServicesFunctionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailServicesFunctions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailServicesFunctionsConnection """ Collection of Salesforce EmailTemplate """ - emailTemplates( - filter: SalesforceEmailTemplateConnectionFilter - sortByCustomField: SalesforceEmailTemplateSortByFieldEnum - sortByField: SalesforceEmailTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailTemplatesConnection + emailTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailTemplateSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailTemplatesConnection """ Collection of Salesforce EntitySubscription """ - entitySubscriptions( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + entitySubscriptions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptions( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events( - filter: SalesforceEventConnectionFilter - sortByCustomField: SalesforceEventSortByFieldEnum - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + events(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce EventFeed """ - eventFeeds( - filter: SalesforceEventFeedConnectionFilter - sortByCustomField: SalesforceEventFeedSortByFieldEnum - sortByField: SalesforceEventFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventFeedsConnection + eventFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EventFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventFeedsConnection """ Collection of Salesforce EventLogFile """ - eventLogFiles( - filter: SalesforceEventLogFileConnectionFilter - sortByCustomField: SalesforceEventLogFileSortByFieldEnum - sortByField: SalesforceEventLogFileSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventLogFilesConnection + eventLogFiles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventLogFileConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventLogFileSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventLogFileSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EventLogFiles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventLogFilesConnection """ Collection of Salesforce EventRelation """ - eventRelations( - filter: SalesforceEventRelationConnectionFilter - sortByCustomField: SalesforceEventRelationSortByFieldEnum - sortByField: SalesforceEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventRelationsConnection + eventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventRelationsConnection """ Collection of Salesforce ExternalDataSource """ - externalDataSources( - filter: SalesforceExternalDataSourceConnectionFilter - sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum - sortByField: SalesforceExternalDataSourceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceExternalDataSourcesConnection + externalDataSources(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceExternalDataSourceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceExternalDataSourceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceExternalDataSourcesConnection """ Collection of Salesforce ExternalDataUserAuth """ - externalDataUserAuths( - filter: SalesforceExternalDataUserAuthConnectionFilter - sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum - sortByField: SalesforceExternalDataUserAuthSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceExternalDataUserAuthsConnection + externalDataUserAuths(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceExternalDataUserAuthConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceExternalDataUserAuthSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceExternalDataUserAuthsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FeedPollChoice """ - feedPollChoices( - filter: SalesforceFeedPollChoiceConnectionFilter - sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum - sortByField: SalesforceFeedPollChoiceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollChoicesConnection + feedPollChoices(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollChoiceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollChoiceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollChoicesConnection """ Collection of Salesforce FeedPollVote """ - feedPollVotes( - filter: SalesforceFeedPollVoteConnectionFilter - sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum - sortByField: SalesforceFeedPollVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedPollVotesConnection + feedPollVotes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedPollVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedPollVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedPollVotesConnection """ Collection of Salesforce FeedRevision """ - feedRevisions( - filter: SalesforceFeedRevisionConnectionFilter - sortByCustomField: SalesforceFeedRevisionSortByFieldEnum - sortByField: SalesforceFeedRevisionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedRevisionsConnection + feedRevisions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedRevisionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedRevisionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedRevisionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedRevisions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedRevisionsConnection """ Collection of Salesforce FileSearchActivity """ - fileSearchActivities( - filter: SalesforceFileSearchActivityConnectionFilter - sortByCustomField: SalesforceFileSearchActivitySortByFieldEnum - sortByField: SalesforceFileSearchActivitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFileSearchActivitysConnection + fileSearchActivities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFileSearchActivityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFileSearchActivitySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFileSearchActivitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FileSearchActivities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFileSearchActivitysConnection """ Collection of Salesforce FlowInterview """ - flowInterviews( - filter: SalesforceFlowInterviewConnectionFilter - sortByCustomField: SalesforceFlowInterviewSortByFieldEnum - sortByField: SalesforceFlowInterviewSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowInterviewsConnection + flowInterviews(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowInterviewConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowInterviewSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowInterviewSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowInterviews to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowInterviewsConnection """ Collection of Salesforce FlowInterviewShare """ - flowInterviewShares( - filter: SalesforceFlowInterviewShareConnectionFilter - sortByCustomField: SalesforceFlowInterviewShareSortByFieldEnum - sortByField: SalesforceFlowInterviewShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowInterviewSharesConnection + flowInterviewShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowInterviewShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowInterviewShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowInterviewShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowInterviewShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowInterviewSharesConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Folder """ - folders( - filter: SalesforceFolderConnectionFilter - sortByCustomField: SalesforceFolderSortByFieldEnum - sortByField: SalesforceFolderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFoldersConnection + folders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFolderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFolderSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFolderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Folders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFoldersConnection """ Collection of Salesforce ForecastShare """ - forecastShares( - filter: SalesforceForecastShareConnectionFilter - sortByCustomField: SalesforceForecastShareSortByFieldEnum - sortByField: SalesforceForecastShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceForecastSharesConnection + forecastShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceForecastShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceForecastShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceForecastShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ForecastShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceForecastSharesConnection """ Collection of Salesforce GrantedByLicense """ - grantedByLicenses( - filter: SalesforceGrantedByLicenseConnectionFilter - sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum - sortByField: SalesforceGrantedByLicenseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceGrantedByLicensesConnection + grantedByLicenses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceGrantedByLicenseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceGrantedByLicenseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of GrantedByLicenses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceGrantedByLicensesConnection """ Collection of Salesforce Group """ - groups( - filter: SalesforceGroupConnectionFilter - sortByCustomField: SalesforceGroupSortByFieldEnum - sortByField: SalesforceGroupSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceGroupsConnection + groups(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceGroupConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceGroupSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceGroupSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Groups to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceGroupsConnection """ Collection of Salesforce GroupMember """ - groupMembers( - filter: SalesforceGroupMemberConnectionFilter - sortByCustomField: SalesforceGroupMemberSortByFieldEnum - sortByField: SalesforceGroupMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceGroupMembersConnection + groupMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceGroupMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceGroupMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceGroupMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of GroupMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceGroupMembersConnection """ Collection of Salesforce Holiday """ - holidays( - filter: SalesforceHolidayConnectionFilter - sortByCustomField: SalesforceHolidaySortByFieldEnum - sortByField: SalesforceHolidaySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceHolidaysConnection + holidays(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceHolidayConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceHolidaySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceHolidaySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Holidays to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceHolidaysConnection """ Collection of Salesforce Idea """ - ideas( - filter: SalesforceIdeaConnectionFilter - sortByCustomField: SalesforceIdeaSortByFieldEnum - sortByField: SalesforceIdeaSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceIdeasConnection + ideas(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceIdeaConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceIdeaSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceIdeaSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Ideas to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceIdeasConnection """ Collection of Salesforce IdeaComment """ - ideaComments( - filter: SalesforceIdeaCommentConnectionFilter - sortByCustomField: SalesforceIdeaCommentSortByFieldEnum - sortByField: SalesforceIdeaCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceIdeaCommentsConnection + ideaComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceIdeaCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceIdeaCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceIdeaCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of IdeaComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceIdeaCommentsConnection """ Collection of Salesforce IdpEventLog """ - idpEventLogs( - filter: SalesforceIdpEventLogConnectionFilter - sortByCustomField: SalesforceIdpEventLogSortByFieldEnum - sortByField: SalesforceIdpEventLogSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceIdpEventLogsConnection + idpEventLogs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceIdpEventLogConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceIdpEventLogSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceIdpEventLogSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of IdpEventLogs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceIdpEventLogsConnection """ Collection of Salesforce InstalledMobileApp """ - installedMobileApps( - filter: SalesforceInstalledMobileAppConnectionFilter - sortByCustomField: SalesforceInstalledMobileAppSortByFieldEnum - sortByField: SalesforceInstalledMobileAppSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceInstalledMobileAppsConnection + installedMobileApps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceInstalledMobileAppConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceInstalledMobileAppSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceInstalledMobileAppSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of InstalledMobileApps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceInstalledMobileAppsConnection """ Collection of Salesforce KnowledgeableUser """ - knowledgeableUsers( - filter: SalesforceKnowledgeableUserConnectionFilter - sortByCustomField: SalesforceKnowledgeableUserSortByFieldEnum - sortByField: SalesforceKnowledgeableUserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceKnowledgeableUsersConnection + knowledgeableUsers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceKnowledgeableUserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceKnowledgeableUserSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceKnowledgeableUserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of KnowledgeableUsers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceKnowledgeableUsersConnection """ Collection of Salesforce Lead """ - leads( - filter: SalesforceLeadConnectionFilter - sortByCustomField: SalesforceLeadSortByFieldEnum - sortByField: SalesforceLeadSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadsConnection + leads(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Leads to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadsConnection """ Collection of Salesforce LeadCleanInfo """ - leadCleanInfos( - filter: SalesforceLeadCleanInfoConnectionFilter - sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum - sortByField: SalesforceLeadCleanInfoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadCleanInfosConnection + leadCleanInfos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadCleanInfoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LeadCleanInfos to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadCleanInfosConnection """ Collection of Salesforce LeadCleanInfo """ - leadCleanInfoReviewers( - filter: SalesforceLeadCleanInfoConnectionFilter - sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum - sortByField: SalesforceLeadCleanInfoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadCleanInfosConnection + leadCleanInfoReviewers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadCleanInfoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LeadCleanInfos to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadCleanInfosConnection """ Collection of Salesforce LeadFeed """ - leadFeeds( - filter: SalesforceLeadFeedConnectionFilter - sortByCustomField: SalesforceLeadFeedSortByFieldEnum - sortByField: SalesforceLeadFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadFeedsConnection + leadFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LeadFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadFeedsConnection """ Collection of Salesforce LeadHistory """ - leadHistories( - filter: SalesforceLeadHistoryConnectionFilter - sortByCustomField: SalesforceLeadHistorySortByFieldEnum - sortByField: SalesforceLeadHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadHistorysConnection + leadHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LeadHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadHistorysConnection """ Collection of Salesforce LeadShare """ - leadShares( - filter: SalesforceLeadShareConnectionFilter - sortByCustomField: SalesforceLeadShareSortByFieldEnum - sortByField: SalesforceLeadShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadSharesConnection + leadShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LeadShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadSharesConnection """ Collection of Salesforce LeadStatus """ - leadStatuses( - filter: SalesforceLeadStatusConnectionFilter - sortByCustomField: SalesforceLeadStatusSortByFieldEnum - sortByField: SalesforceLeadStatusSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadStatussConnection + leadStatuses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadStatusConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadStatusSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadStatusSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LeadStatuses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadStatussConnection """ Collection of Salesforce LightningComponentBundle """ - lightningComponentBundles( - filter: SalesforceLightningComponentBundleConnectionFilter - sortByCustomField: SalesforceLightningComponentBundleSortByFieldEnum - sortByField: SalesforceLightningComponentBundleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLightningComponentBundlesConnection + lightningComponentBundles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLightningComponentBundleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLightningComponentBundleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLightningComponentBundleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LightningComponentBundles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLightningComponentBundlesConnection """ Collection of Salesforce LightningComponentResource """ - lightningComponentResources( - filter: SalesforceLightningComponentResourceConnectionFilter - sortByCustomField: SalesforceLightningComponentResourceSortByFieldEnum - sortByField: SalesforceLightningComponentResourceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLightningComponentResourcesConnection + lightningComponentResources(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLightningComponentResourceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLightningComponentResourceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLightningComponentResourceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LightningComponentResources to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLightningComponentResourcesConnection """ Collection of Salesforce ListEmail """ - listEmails( - filter: SalesforceListEmailConnectionFilter - sortByCustomField: SalesforceListEmailSortByFieldEnum - sortByField: SalesforceListEmailSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceListEmailsConnection + listEmails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceListEmailConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceListEmailSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceListEmailSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ListEmails to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceListEmailsConnection """ Collection of Salesforce ListEmailRecipientSource """ - listEmailRecipientSources( - filter: SalesforceListEmailRecipientSourceConnectionFilter - sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum - sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceListEmailRecipientSourcesConnection + listEmailRecipientSources(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceListEmailRecipientSourceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ListEmailRecipientSources to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceListEmailRecipientSourcesConnection """ Collection of Salesforce ListEmailShare """ - listEmailShares( - filter: SalesforceListEmailShareConnectionFilter - sortByCustomField: SalesforceListEmailShareSortByFieldEnum - sortByField: SalesforceListEmailShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceListEmailSharesConnection + listEmailShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceListEmailShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceListEmailShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceListEmailShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ListEmailShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceListEmailSharesConnection """ Collection of Salesforce ListView """ - listViews( - filter: SalesforceListViewConnectionFilter - sortByCustomField: SalesforceListViewSortByFieldEnum - sortByField: SalesforceListViewSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceListViewsConnection + listViews(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceListViewConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceListViewSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceListViewSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ListViews to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceListViewsConnection """ Collection of Salesforce ListViewChart """ - listViewCharts( - filter: SalesforceListViewChartConnectionFilter - sortByCustomField: SalesforceListViewChartSortByFieldEnum - sortByField: SalesforceListViewChartSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceListViewChartsConnection + listViewCharts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceListViewChartConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceListViewChartSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceListViewChartSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ListViewCharts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceListViewChartsConnection """ Collection of Salesforce LoginGeo """ - loginGeos( - filter: SalesforceLoginGeoConnectionFilter - sortByCustomField: SalesforceLoginGeoSortByFieldEnum - sortByField: SalesforceLoginGeoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLoginGeosConnection + loginGeos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLoginGeoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLoginGeoSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLoginGeoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LoginGeos to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLoginGeosConnection """ Collection of Salesforce LoginHistory """ - loginHistories( - filter: SalesforceLoginHistoryConnectionFilter - sortByCustomField: SalesforceLoginHistorySortByFieldEnum - sortByField: SalesforceLoginHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLoginHistorysConnection + loginHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLoginHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLoginHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLoginHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LoginHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLoginHistorysConnection """ Collection of Salesforce LoginIp """ - loginIps( - filter: SalesforceLoginIpConnectionFilter - sortByCustomField: SalesforceLoginIpSortByFieldEnum - sortByField: SalesforceLoginIpSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLoginIpsConnection + loginIps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLoginIpConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLoginIpSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLoginIpSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LoginIps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLoginIpsConnection """ Collection of Salesforce Macro """ - macros( - filter: SalesforceMacroConnectionFilter - sortByCustomField: SalesforceMacroSortByFieldEnum - sortByField: SalesforceMacroSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMacrosConnection + macros(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMacroConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceMacroSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMacroSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Macros to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMacrosConnection """ Collection of Salesforce MacroHistory """ - macroHistories( - filter: SalesforceMacroHistoryConnectionFilter - sortByCustomField: SalesforceMacroHistorySortByFieldEnum - sortByField: SalesforceMacroHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMacroHistorysConnection + macroHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMacroHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceMacroHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMacroHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of MacroHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMacroHistorysConnection """ Collection of Salesforce MacroInstruction """ - macroInstructions( - filter: SalesforceMacroInstructionConnectionFilter - sortByCustomField: SalesforceMacroInstructionSortByFieldEnum - sortByField: SalesforceMacroInstructionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMacroInstructionsConnection + macroInstructions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMacroInstructionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceMacroInstructionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMacroInstructionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of MacroInstructions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMacroInstructionsConnection """ Collection of Salesforce MacroShare """ - macroShares( - filter: SalesforceMacroShareConnectionFilter - sortByCustomField: SalesforceMacroShareSortByFieldEnum - sortByField: SalesforceMacroShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMacroSharesConnection + macroShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMacroShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceMacroShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMacroShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of MacroShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMacroSharesConnection """ Collection of Salesforce MailmergeTemplate """ - mailmergeTemplates( - filter: SalesforceMailmergeTemplateConnectionFilter - sortByCustomField: SalesforceMailmergeTemplateSortByFieldEnum - sortByField: SalesforceMailmergeTemplateSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMailmergeTemplatesConnection + mailmergeTemplates(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMailmergeTemplateConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceMailmergeTemplateSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMailmergeTemplateSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of MailmergeTemplates to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMailmergeTemplatesConnection """ Collection of Salesforce MatchingRule """ - matchingRules( - filter: SalesforceMatchingRuleConnectionFilter - sortByCustomField: SalesforceMatchingRuleSortByFieldEnum - sortByField: SalesforceMatchingRuleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMatchingRulesConnection + matchingRules(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMatchingRuleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceMatchingRuleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMatchingRuleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of MatchingRules to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMatchingRulesConnection """ Collection of Salesforce MatchingRuleItem """ - matchingRuleItems( - filter: SalesforceMatchingRuleItemConnectionFilter - sortByCustomField: SalesforceMatchingRuleItemSortByFieldEnum - sortByField: SalesforceMatchingRuleItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceMatchingRuleItemsConnection + matchingRuleItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceMatchingRuleItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceMatchingRuleItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceMatchingRuleItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of MatchingRuleItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceMatchingRuleItemsConnection """ Collection of Salesforce NamedCredential """ - namedCredentials( - filter: SalesforceNamedCredentialConnectionFilter - sortByCustomField: SalesforceNamedCredentialSortByFieldEnum - sortByField: SalesforceNamedCredentialSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceNamedCredentialsConnection + namedCredentials(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceNamedCredentialConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceNamedCredentialSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceNamedCredentialSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of NamedCredentials to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceNamedCredentialsConnection """ Collection of Salesforce Note """ - notes( - filter: SalesforceNoteConnectionFilter - sortByCustomField: SalesforceNoteSortByFieldEnum - sortByField: SalesforceNoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceNotesConnection + notes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceNoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceNoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Notes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceNotesConnection """ Collection of Salesforce ObjectPermissions """ - objectPermissionsPlural( - filter: SalesforceObjectPermissionsConnectionFilter - sortByCustomField: SalesforceObjectPermissionsSortByFieldEnum - sortByField: SalesforceObjectPermissionsSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceObjectPermissionssConnection + objectPermissionsPlural(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceObjectPermissionsConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceObjectPermissionsSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceObjectPermissionsSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ObjectPermissions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceObjectPermissionssConnection """ Collection of Salesforce Opportunity """ - opportunities( - filter: SalesforceOpportunityConnectionFilter - sortByCustomField: SalesforceOpportunitySortByFieldEnum - sortByField: SalesforceOpportunitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunitysConnection + opportunities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunitySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Opportunities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunitysConnection """ Collection of Salesforce OpportunityCompetitor """ - opportunityCompetitors( - filter: SalesforceOpportunityCompetitorConnectionFilter - sortByCustomField: SalesforceOpportunityCompetitorSortByFieldEnum - sortByField: SalesforceOpportunityCompetitorSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityCompetitorsConnection + opportunityCompetitors(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityCompetitorConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityCompetitorSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityCompetitorSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityCompetitors to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityCompetitorsConnection """ Collection of Salesforce OpportunityContactRole """ - opportunityContactRoles( - filter: SalesforceOpportunityContactRoleConnectionFilter - sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum - sortByField: SalesforceOpportunityContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityContactRolesConnection + opportunityContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityContactRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityContactRolesConnection """ Collection of Salesforce OpportunityFeed """ - opportunityFeeds( - filter: SalesforceOpportunityFeedConnectionFilter - sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum - sortByField: SalesforceOpportunityFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityFeedsConnection + opportunityFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityFeedsConnection """ Collection of Salesforce OpportunityFieldHistory """ - opportunityFieldHistories( - filter: SalesforceOpportunityFieldHistoryConnectionFilter - sortByCustomField: SalesforceOpportunityFieldHistorySortByFieldEnum - sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityFieldHistorysConnection + opportunityFieldHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityFieldHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityFieldHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityFieldHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityFieldHistorysConnection """ Collection of Salesforce OpportunityHistory """ - opportunityHistories( - filter: SalesforceOpportunityHistoryConnectionFilter - sortByCustomField: SalesforceOpportunityHistorySortByFieldEnum - sortByField: SalesforceOpportunityHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityHistorysConnection + opportunityHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityHistorysConnection """ Collection of Salesforce OpportunityLineItem """ - opportunityLineItems( - filter: SalesforceOpportunityLineItemConnectionFilter - sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum - sortByField: SalesforceOpportunityLineItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityLineItemsConnection + opportunityLineItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityLineItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityLineItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityLineItemsConnection """ Collection of Salesforce OpportunityPartner """ - opportunityPartners( - filter: SalesforceOpportunityPartnerConnectionFilter - sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum - sortByField: SalesforceOpportunityPartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityPartnersConnection + opportunityPartners(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityPartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityPartnersConnection """ Collection of Salesforce OpportunityShare """ - opportunityShares( - filter: SalesforceOpportunityShareConnectionFilter - sortByCustomField: SalesforceOpportunityShareSortByFieldEnum - sortByField: SalesforceOpportunityShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunitySharesConnection + opportunityShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunitySharesConnection """ Collection of Salesforce OpportunityStage """ - opportunityStages( - filter: SalesforceOpportunityStageConnectionFilter - sortByCustomField: SalesforceOpportunityStageSortByFieldEnum - sortByField: SalesforceOpportunityStageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityStagesConnection + opportunityStages(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityStageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityStageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityStageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityStages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityStagesConnection """ Collection of Salesforce Order """ - orders( - filter: SalesforceOrderConnectionFilter - sortByCustomField: SalesforceOrderSortByFieldEnum - sortByField: SalesforceOrderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrdersConnection + orders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Orders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrdersConnection """ Collection of Salesforce OrderFeed """ - orderFeeds( - filter: SalesforceOrderFeedConnectionFilter - sortByCustomField: SalesforceOrderFeedSortByFieldEnum - sortByField: SalesforceOrderFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderFeedsConnection + orderFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderFeedsConnection """ Collection of Salesforce OrderHistory """ - orderHistories( - filter: SalesforceOrderHistoryConnectionFilter - sortByCustomField: SalesforceOrderHistorySortByFieldEnum - sortByField: SalesforceOrderHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderHistorysConnection + orderHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderHistorysConnection """ Collection of Salesforce OrderItem """ - orderItems( - filter: SalesforceOrderItemConnectionFilter - sortByCustomField: SalesforceOrderItemSortByFieldEnum - sortByField: SalesforceOrderItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderItemsConnection + orderItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderItemsConnection """ Collection of Salesforce OrderItemFeed """ - orderItemFeeds( - filter: SalesforceOrderItemFeedConnectionFilter - sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum - sortByField: SalesforceOrderItemFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderItemFeedsConnection + orderItemFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderItemFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderItemFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderItemFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderItemFeedsConnection """ Collection of Salesforce OrderItemHistory """ - orderItemHistories( - filter: SalesforceOrderItemHistoryConnectionFilter - sortByCustomField: SalesforceOrderItemHistorySortByFieldEnum - sortByField: SalesforceOrderItemHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderItemHistorysConnection + orderItemHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderItemHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderItemHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderItemHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderItemHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderItemHistorysConnection """ Collection of Salesforce OrderShare """ - orderShares( - filter: SalesforceOrderShareConnectionFilter - sortByCustomField: SalesforceOrderShareSortByFieldEnum - sortByField: SalesforceOrderShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrderSharesConnection + orderShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrderShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrderSharesConnection """ Collection of Salesforce OrgDeleteRequest """ - orgDeleteRequests( - filter: SalesforceOrgDeleteRequestConnectionFilter - sortByCustomField: SalesforceOrgDeleteRequestSortByFieldEnum - sortByField: SalesforceOrgDeleteRequestSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrgDeleteRequestsConnection + orgDeleteRequests(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrgDeleteRequestConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrgDeleteRequestSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrgDeleteRequestSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrgDeleteRequests to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrgDeleteRequestsConnection """ Collection of Salesforce OrgDeleteRequestShare """ - orgDeleteRequestShares( - filter: SalesforceOrgDeleteRequestShareConnectionFilter - sortByCustomField: SalesforceOrgDeleteRequestShareSortByFieldEnum - sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrgDeleteRequestSharesConnection + orgDeleteRequestShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrgDeleteRequestShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrgDeleteRequestShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrgDeleteRequestShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrgDeleteRequestSharesConnection """ Collection of Salesforce OrgWideEmailAddress """ - orgWideEmailAddresses( - filter: SalesforceOrgWideEmailAddressConnectionFilter - sortByCustomField: SalesforceOrgWideEmailAddressSortByFieldEnum - sortByField: SalesforceOrgWideEmailAddressSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrgWideEmailAddresssConnection + orgWideEmailAddresses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrgWideEmailAddressConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrgWideEmailAddressSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrgWideEmailAddressSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OrgWideEmailAddresses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrgWideEmailAddresssConnection """ Collection of Salesforce Organization """ - organizations( - filter: SalesforceOrganizationConnectionFilter - sortByCustomField: SalesforceOrganizationSortByFieldEnum - sortByField: SalesforceOrganizationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrganizationsConnection + organizations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrganizationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrganizationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrganizationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Organizations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrganizationsConnection """ Collection of Salesforce Partner """ - partners( - filter: SalesforcePartnerConnectionFilter - sortByCustomField: SalesforcePartnerSortByFieldEnum - sortByField: SalesforcePartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePartnersConnection + partners(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePartnerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Partners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePartnersConnection """ Collection of Salesforce PartnerRole """ - partnerRoles( - filter: SalesforcePartnerRoleConnectionFilter - sortByCustomField: SalesforcePartnerRoleSortByFieldEnum - sortByField: SalesforcePartnerRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePartnerRolesConnection + partnerRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePartnerRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePartnerRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePartnerRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PartnerRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePartnerRolesConnection """ Collection of Salesforce PermissionSet """ - permissionSets( - filter: SalesforcePermissionSetConnectionFilter - sortByCustomField: SalesforcePermissionSetSortByFieldEnum - sortByField: SalesforcePermissionSetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePermissionSetsConnection + permissionSets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePermissionSetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePermissionSetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePermissionSetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PermissionSets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePermissionSetsConnection """ Collection of Salesforce PermissionSetAssignment """ - permissionSetAssignments( - filter: SalesforcePermissionSetAssignmentConnectionFilter - sortByCustomField: SalesforcePermissionSetAssignmentSortByFieldEnum - sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePermissionSetAssignmentsConnection + permissionSetAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePermissionSetAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePermissionSetAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PermissionSetAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePermissionSetAssignmentsConnection """ Collection of Salesforce PermissionSetLicense """ - permissionSetLicenses( - filter: SalesforcePermissionSetLicenseConnectionFilter - sortByCustomField: SalesforcePermissionSetLicenseSortByFieldEnum - sortByField: SalesforcePermissionSetLicenseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePermissionSetLicensesConnection + permissionSetLicenses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePermissionSetLicenseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePermissionSetLicenseSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePermissionSetLicenseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PermissionSetLicenses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePermissionSetLicensesConnection """ Collection of Salesforce PermissionSetLicenseAssign """ - permissionSetLicenseAssignments( - filter: SalesforcePermissionSetLicenseAssignConnectionFilter - sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum - sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePermissionSetLicenseAssignsConnection + permissionSetLicenseAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PermissionSetLicenseAssigns to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePermissionSetLicenseAssignsConnection """ Collection of Salesforce PermissionSetLicenseAssign """ - permissionSetLicenseAssigns( - filter: SalesforcePermissionSetLicenseAssignConnectionFilter - sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum - sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePermissionSetLicenseAssignsConnection + permissionSetLicenseAssigns(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePermissionSetLicenseAssignConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PermissionSetLicenseAssigns to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePermissionSetLicenseAssignsConnection """ Collection of Salesforce PlatformCachePartition """ - platformCachePartitions( - filter: SalesforcePlatformCachePartitionConnectionFilter - sortByCustomField: SalesforcePlatformCachePartitionSortByFieldEnum - sortByField: SalesforcePlatformCachePartitionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePlatformCachePartitionsConnection + platformCachePartitions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePlatformCachePartitionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePlatformCachePartitionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePlatformCachePartitionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PlatformCachePartitions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePlatformCachePartitionsConnection """ Collection of Salesforce PlatformCachePartitionType """ - platformCachePartitionTypes( - filter: SalesforcePlatformCachePartitionTypeConnectionFilter - sortByCustomField: SalesforcePlatformCachePartitionTypeSortByFieldEnum - sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePlatformCachePartitionTypesConnection + platformCachePartitionTypes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePlatformCachePartitionTypeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePlatformCachePartitionTypeSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PlatformCachePartitionTypes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePlatformCachePartitionTypesConnection """ Collection of Salesforce Pricebook2 """ - pricebook2s( - filter: SalesforcePricebook2ConnectionFilter - sortByCustomField: SalesforcePricebook2SortByFieldEnum - sortByField: SalesforcePricebook2SortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePricebook2sConnection + pricebook2s(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePricebook2ConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePricebook2SortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePricebook2SortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Pricebook2s to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePricebook2sConnection """ Collection of Salesforce Pricebook2History """ - pricebook2Histories( - filter: SalesforcePricebook2HistoryConnectionFilter - sortByCustomField: SalesforcePricebook2HistorySortByFieldEnum - sortByField: SalesforcePricebook2HistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePricebook2HistorysConnection + pricebook2Histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePricebook2HistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePricebook2HistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePricebook2HistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Pricebook2Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePricebook2HistorysConnection """ Collection of Salesforce PricebookEntry """ - pricebookEntries( - filter: SalesforcePricebookEntryConnectionFilter - sortByCustomField: SalesforcePricebookEntrySortByFieldEnum - sortByField: SalesforcePricebookEntrySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePricebookEntrysConnection + pricebookEntries(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePricebookEntryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePricebookEntrySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePricebookEntrySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PricebookEntries to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePricebookEntrysConnection """ Collection of Salesforce ProcessDefinition """ - processDefinitions( - filter: SalesforceProcessDefinitionConnectionFilter - sortByCustomField: SalesforceProcessDefinitionSortByFieldEnum - sortByField: SalesforceProcessDefinitionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessDefinitionsConnection + processDefinitions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessDefinitionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessDefinitionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessDefinitionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessDefinitions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessDefinitionsConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce ProcessInstanceNode """ - processInstanceNodes( - filter: SalesforceProcessInstanceNodeConnectionFilter - sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum - sortByField: SalesforceProcessInstanceNodeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstanceNodesConnection + processInstanceNodes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceNodeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceNodeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstanceNodes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstanceNodesConnection """ Collection of Salesforce ProcessInstanceStep """ - processInstanceSteps( - filter: SalesforceProcessInstanceStepConnectionFilter - sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum - sortByField: SalesforceProcessInstanceStepSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstanceStepsConnection + processInstanceSteps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceStepConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceStepSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstanceSteps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstanceStepsConnection """ Collection of Salesforce ProcessInstanceWorkitem """ - processInstanceWorkitems( - filter: SalesforceProcessInstanceWorkitemConnectionFilter - sortByCustomField: SalesforceProcessInstanceWorkitemSortByFieldEnum - sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstanceWorkitemsConnection + processInstanceWorkitems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceWorkitemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceWorkitemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstanceWorkitems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstanceWorkitemsConnection """ Collection of Salesforce Product2 """ - product2s( - filter: SalesforceProduct2ConnectionFilter - sortByCustomField: SalesforceProduct2SortByFieldEnum - sortByField: SalesforceProduct2SortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProduct2sConnection + product2s(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProduct2ConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProduct2SortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProduct2SortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Product2s to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProduct2sConnection """ Collection of Salesforce Product2Feed """ - product2Feeds( - filter: SalesforceProduct2FeedConnectionFilter - sortByCustomField: SalesforceProduct2FeedSortByFieldEnum - sortByField: SalesforceProduct2FeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProduct2FeedsConnection + product2Feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProduct2FeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProduct2FeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProduct2FeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Product2Feeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProduct2FeedsConnection """ Collection of Salesforce Product2History """ - product2Histories( - filter: SalesforceProduct2HistoryConnectionFilter - sortByCustomField: SalesforceProduct2HistorySortByFieldEnum - sortByField: SalesforceProduct2HistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProduct2HistorysConnection + product2Histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProduct2HistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProduct2HistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProduct2HistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Product2Histories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProduct2HistorysConnection """ Collection of Salesforce Profile """ - profiles( - filter: SalesforceProfileConnectionFilter - sortByCustomField: SalesforceProfileSortByFieldEnum - sortByField: SalesforceProfileSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProfilesConnection + profiles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProfileConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProfileSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProfileSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Profiles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProfilesConnection """ Collection of Salesforce PushTopic """ - pushTopics( - filter: SalesforcePushTopicConnectionFilter - sortByCustomField: SalesforcePushTopicSortByFieldEnum - sortByField: SalesforcePushTopicSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePushTopicsConnection + pushTopics(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePushTopicConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePushTopicSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePushTopicSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of PushTopics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePushTopicsConnection """ Collection of Salesforce QueueSobject """ - queueSobjects( - filter: SalesforceQueueSobjectConnectionFilter - sortByCustomField: SalesforceQueueSobjectSortByFieldEnum - sortByField: SalesforceQueueSobjectSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceQueueSobjectsConnection + queueSobjects(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceQueueSobjectConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceQueueSobjectSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceQueueSobjectSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of QueueSobjects to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceQueueSobjectsConnection """ Collection of Salesforce QuickText """ - quickTexts( - filter: SalesforceQuickTextConnectionFilter - sortByCustomField: SalesforceQuickTextSortByFieldEnum - sortByField: SalesforceQuickTextSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceQuickTextsConnection + quickTexts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceQuickTextConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceQuickTextSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceQuickTextSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of QuickTexts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceQuickTextsConnection """ Collection of Salesforce QuickTextHistory """ - quickTextHistories( - filter: SalesforceQuickTextHistoryConnectionFilter - sortByCustomField: SalesforceQuickTextHistorySortByFieldEnum - sortByField: SalesforceQuickTextHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceQuickTextHistorysConnection + quickTextHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceQuickTextHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceQuickTextHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceQuickTextHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of QuickTextHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceQuickTextHistorysConnection """ Collection of Salesforce QuickTextShare """ - quickTextShares( - filter: SalesforceQuickTextShareConnectionFilter - sortByCustomField: SalesforceQuickTextShareSortByFieldEnum - sortByField: SalesforceQuickTextShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceQuickTextSharesConnection + quickTextShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceQuickTextShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceQuickTextShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceQuickTextShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of QuickTextShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceQuickTextSharesConnection """ Collection of Salesforce RecordType """ - recordTypes( - filter: SalesforceRecordTypeConnectionFilter - sortByCustomField: SalesforceRecordTypeSortByFieldEnum - sortByField: SalesforceRecordTypeSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceRecordTypesConnection + recordTypes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceRecordTypeConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceRecordTypeSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceRecordTypeSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of RecordTypes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceRecordTypesConnection """ Collection of Salesforce Report """ - reports( - filter: SalesforceReportConnectionFilter - sortByCustomField: SalesforceReportSortByFieldEnum - sortByField: SalesforceReportSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceReportsConnection + reports(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceReportConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceReportSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceReportSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Reports to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceReportsConnection """ Collection of Salesforce ReportFeed """ - reportFeeds( - filter: SalesforceReportFeedConnectionFilter - sortByCustomField: SalesforceReportFeedSortByFieldEnum - sortByField: SalesforceReportFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceReportFeedsConnection + reportFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceReportFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceReportFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceReportFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ReportFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceReportFeedsConnection """ Collection of Salesforce SamlSsoConfig """ - samlSsoConfigs( - filter: SalesforceSamlSsoConfigConnectionFilter - sortByCustomField: SalesforceSamlSsoConfigSortByFieldEnum - sortByField: SalesforceSamlSsoConfigSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSamlSsoConfigsConnection + samlSsoConfigs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSamlSsoConfigConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSamlSsoConfigSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSamlSsoConfigSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SamlSsoConfigs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSamlSsoConfigsConnection """ Collection of Salesforce Scontrol """ - scontrols( - filter: SalesforceScontrolConnectionFilter - sortByCustomField: SalesforceScontrolSortByFieldEnum - sortByField: SalesforceScontrolSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceScontrolsConnection + scontrols(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceScontrolConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceScontrolSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceScontrolSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Scontrols to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceScontrolsConnection """ Collection of Salesforce SearchActivity """ - searchActivities( - filter: SalesforceSearchActivityConnectionFilter - sortByCustomField: SalesforceSearchActivitySortByFieldEnum - sortByField: SalesforceSearchActivitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSearchActivitysConnection + searchActivities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSearchActivityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSearchActivitySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSearchActivitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SearchActivities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSearchActivitysConnection """ Collection of Salesforce SearchPromotionRule """ - searchPromotionRules( - filter: SalesforceSearchPromotionRuleConnectionFilter - sortByCustomField: SalesforceSearchPromotionRuleSortByFieldEnum - sortByField: SalesforceSearchPromotionRuleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSearchPromotionRulesConnection + searchPromotionRules(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSearchPromotionRuleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSearchPromotionRuleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSearchPromotionRuleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SearchPromotionRules to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSearchPromotionRulesConnection """ Collection of Salesforce SecureAgent """ - secureAgents( - filter: SalesforceSecureAgentConnectionFilter - sortByCustomField: SalesforceSecureAgentSortByFieldEnum - sortByField: SalesforceSecureAgentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSecureAgentsConnection + secureAgents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSecureAgentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSecureAgentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSecureAgentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SecureAgents to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSecureAgentsConnection """ Collection of Salesforce SecureAgentPlugin """ - secureAgentPlugins( - filter: SalesforceSecureAgentPluginConnectionFilter - sortByCustomField: SalesforceSecureAgentPluginSortByFieldEnum - sortByField: SalesforceSecureAgentPluginSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSecureAgentPluginsConnection + secureAgentPlugins(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSecureAgentPluginConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSecureAgentPluginSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSecureAgentPluginSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SecureAgentPlugins to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSecureAgentPluginsConnection """ Collection of Salesforce SecureAgentPluginProperty """ - secureAgentPluginProperties( - filter: SalesforceSecureAgentPluginPropertyConnectionFilter - sortByCustomField: SalesforceSecureAgentPluginPropertySortByFieldEnum - sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSecureAgentPluginPropertysConnection + secureAgentPluginProperties(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSecureAgentPluginPropertyConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSecureAgentPluginPropertySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SecureAgentPluginProperties to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSecureAgentPluginPropertysConnection """ Collection of Salesforce SecureAgentsCluster """ - secureAgentsClusters( - filter: SalesforceSecureAgentsClusterConnectionFilter - sortByCustomField: SalesforceSecureAgentsClusterSortByFieldEnum - sortByField: SalesforceSecureAgentsClusterSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSecureAgentsClustersConnection + secureAgentsClusters(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSecureAgentsClusterConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSecureAgentsClusterSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSecureAgentsClusterSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SecureAgentsClusters to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSecureAgentsClustersConnection """ Collection of Salesforce SecurityCustomBaseline """ - securityCustomBaselines( - filter: SalesforceSecurityCustomBaselineConnectionFilter - sortByCustomField: SalesforceSecurityCustomBaselineSortByFieldEnum - sortByField: SalesforceSecurityCustomBaselineSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSecurityCustomBaselinesConnection + securityCustomBaselines(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSecurityCustomBaselineConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSecurityCustomBaselineSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSecurityCustomBaselineSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SecurityCustomBaselines to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSecurityCustomBaselinesConnection """ Collection of Salesforce SessionPermSetActivation """ - sessionPermSetActivations( - filter: SalesforceSessionPermSetActivationConnectionFilter - sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum - sortByField: SalesforceSessionPermSetActivationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSessionPermSetActivationsConnection + sessionPermSetActivations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSessionPermSetActivationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSessionPermSetActivationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SessionPermSetActivations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSessionPermSetActivationsConnection """ Collection of Salesforce SetupAuditTrail """ - setupAuditTrails( - filter: SalesforceSetupAuditTrailConnectionFilter - sortByCustomField: SalesforceSetupAuditTrailSortByFieldEnum - sortByField: SalesforceSetupAuditTrailSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSetupAuditTrailsConnection + setupAuditTrails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSetupAuditTrailConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSetupAuditTrailSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSetupAuditTrailSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SetupAuditTrails to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSetupAuditTrailsConnection """ Collection of Salesforce Site """ - userSites( - filter: SalesforceSiteConnectionFilter - sortByCustomField: SalesforceSiteSortByFieldEnum - sortByField: SalesforceSiteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSitesConnection + userSites(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSiteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSiteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSiteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Sites to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSitesConnection """ Collection of Salesforce Site """ - sites( - filter: SalesforceSiteConnectionFilter - sortByCustomField: SalesforceSiteSortByFieldEnum - sortByField: SalesforceSiteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSitesConnection + sites(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSiteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSiteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSiteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Sites to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSitesConnection """ Collection of Salesforce SiteFeed """ - siteFeeds( - filter: SalesforceSiteFeedConnectionFilter - sortByCustomField: SalesforceSiteFeedSortByFieldEnum - sortByField: SalesforceSiteFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSiteFeedsConnection + siteFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSiteFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSiteFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSiteFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SiteFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSiteFeedsConnection """ Collection of Salesforce SiteHistory """ - siteHistories( - filter: SalesforceSiteHistoryConnectionFilter - sortByCustomField: SalesforceSiteHistorySortByFieldEnum - sortByField: SalesforceSiteHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSiteHistorysConnection + siteHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSiteHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSiteHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSiteHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SiteHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSiteHistorysConnection """ Collection of Salesforce Solution """ - solutions( - filter: SalesforceSolutionConnectionFilter - sortByCustomField: SalesforceSolutionSortByFieldEnum - sortByField: SalesforceSolutionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSolutionsConnection + solutions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSolutionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSolutionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSolutionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Solutions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSolutionsConnection """ Collection of Salesforce SolutionFeed """ - solutionFeeds( - filter: SalesforceSolutionFeedConnectionFilter - sortByCustomField: SalesforceSolutionFeedSortByFieldEnum - sortByField: SalesforceSolutionFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSolutionFeedsConnection + solutionFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSolutionFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSolutionFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSolutionFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SolutionFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSolutionFeedsConnection """ Collection of Salesforce SolutionHistory """ - solutionHistories( - filter: SalesforceSolutionHistoryConnectionFilter - sortByCustomField: SalesforceSolutionHistorySortByFieldEnum - sortByField: SalesforceSolutionHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSolutionHistorysConnection + solutionHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSolutionHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSolutionHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSolutionHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SolutionHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSolutionHistorysConnection """ Collection of Salesforce SolutionStatus """ - solutionStatuses( - filter: SalesforceSolutionStatusConnectionFilter - sortByCustomField: SalesforceSolutionStatusSortByFieldEnum - sortByField: SalesforceSolutionStatusSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceSolutionStatussConnection + solutionStatuses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceSolutionStatusConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceSolutionStatusSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceSolutionStatusSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of SolutionStatuses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceSolutionStatussConnection """ Collection of Salesforce Stamp """ - stamps( - filter: SalesforceStampConnectionFilter - sortByCustomField: SalesforceStampSortByFieldEnum - sortByField: SalesforceStampSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceStampsConnection + stamps(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceStampConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceStampSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceStampSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Stamps to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceStampsConnection """ Collection of Salesforce StampAssignment """ - stampAssignments( - filter: SalesforceStampAssignmentConnectionFilter - sortByCustomField: SalesforceStampAssignmentSortByFieldEnum - sortByField: SalesforceStampAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceStampAssignmentsConnection + stampAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceStampAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceStampAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceStampAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of StampAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceStampAssignmentsConnection """ Collection of Salesforce StaticResource """ - staticResources( - filter: SalesforceStaticResourceConnectionFilter - sortByCustomField: SalesforceStaticResourceSortByFieldEnum - sortByField: SalesforceStaticResourceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceStaticResourcesConnection + staticResources(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceStaticResourceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceStaticResourceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceStaticResourceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of StaticResources to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceStaticResourcesConnection """ Collection of Salesforce StreamingChannel """ - streamingChannels( - filter: SalesforceStreamingChannelConnectionFilter - sortByCustomField: SalesforceStreamingChannelSortByFieldEnum - sortByField: SalesforceStreamingChannelSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceStreamingChannelsConnection + streamingChannels(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceStreamingChannelConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceStreamingChannelSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceStreamingChannelSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of StreamingChannels to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceStreamingChannelsConnection """ Collection of Salesforce StreamingChannelShare """ - streamingChannelShares( - filter: SalesforceStreamingChannelShareConnectionFilter - sortByCustomField: SalesforceStreamingChannelShareSortByFieldEnum - sortByField: SalesforceStreamingChannelShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceStreamingChannelSharesConnection + streamingChannelShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceStreamingChannelShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceStreamingChannelShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceStreamingChannelShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of StreamingChannelShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceStreamingChannelSharesConnection """ Collection of Salesforce Task """ - tasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: SalesforceTaskSortByFieldEnum - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection + tasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection """ Collection of Salesforce TaskFeed """ - taskFeeds( - filter: SalesforceTaskFeedConnectionFilter - sortByCustomField: SalesforceTaskFeedSortByFieldEnum - sortByField: SalesforceTaskFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTaskFeedsConnection + taskFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TaskFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTaskFeedsConnection """ Collection of Salesforce TaskPriority """ - taskPriorities( - filter: SalesforceTaskPriorityConnectionFilter - sortByCustomField: SalesforceTaskPrioritySortByFieldEnum - sortByField: SalesforceTaskPrioritySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTaskPrioritysConnection + taskPriorities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskPriorityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskPrioritySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskPrioritySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TaskPriorities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTaskPrioritysConnection """ Collection of Salesforce TaskStatus """ - taskStatuses( - filter: SalesforceTaskStatusConnectionFilter - sortByCustomField: SalesforceTaskStatusSortByFieldEnum - sortByField: SalesforceTaskStatusSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTaskStatussConnection + taskStatuses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskStatusConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskStatusSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskStatusSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TaskStatuses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTaskStatussConnection """ Collection of Salesforce TenantUsageEntitlement """ - tenantUsageEntitlements( - filter: SalesforceTenantUsageEntitlementConnectionFilter - sortByCustomField: SalesforceTenantUsageEntitlementSortByFieldEnum - sortByField: SalesforceTenantUsageEntitlementSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTenantUsageEntitlementsConnection + tenantUsageEntitlements(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTenantUsageEntitlementConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTenantUsageEntitlementSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTenantUsageEntitlementSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TenantUsageEntitlements to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTenantUsageEntitlementsConnection """ Collection of Salesforce TestSuiteMembership """ - testSuiteMemberships( - filter: SalesforceTestSuiteMembershipConnectionFilter - sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum - sortByField: SalesforceTestSuiteMembershipSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTestSuiteMembershipsConnection + testSuiteMemberships(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTestSuiteMembershipConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTestSuiteMembershipSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TestSuiteMemberships to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTestSuiteMembershipsConnection """ Collection of Salesforce TodayGoal """ - todayGoals( - filter: SalesforceTodayGoalConnectionFilter - sortByCustomField: SalesforceTodayGoalSortByFieldEnum - sortByField: SalesforceTodayGoalSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTodayGoalsConnection + todayGoals(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTodayGoalConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTodayGoalSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTodayGoalSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TodayGoals to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTodayGoalsConnection """ Collection of Salesforce TodayGoalShare """ - todayGoalShares( - filter: SalesforceTodayGoalShareConnectionFilter - sortByCustomField: SalesforceTodayGoalShareSortByFieldEnum - sortByField: SalesforceTodayGoalShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTodayGoalSharesConnection + todayGoalShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTodayGoalShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTodayGoalShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTodayGoalShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TodayGoalShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTodayGoalSharesConnection """ Collection of Salesforce Topic """ - topics( - filter: SalesforceTopicConnectionFilter - sortByCustomField: SalesforceTopicSortByFieldEnum - sortByField: SalesforceTopicSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicsConnection + topics(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Topics to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicsConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection """ Collection of Salesforce TopicFeed """ - topicFeeds( - filter: SalesforceTopicFeedConnectionFilter - sortByCustomField: SalesforceTopicFeedSortByFieldEnum - sortByField: SalesforceTopicFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicFeedsConnection + topicFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicFeedsConnection """ Collection of Salesforce TopicUserEvent """ - topicUserEvents( - filter: SalesforceTopicUserEventConnectionFilter - sortByCustomField: SalesforceTopicUserEventSortByFieldEnum - sortByField: SalesforceTopicUserEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicUserEventsConnection + topicUserEvents(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicUserEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicUserEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicUserEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicUserEvents to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicUserEventsConnection """ Collection of Salesforce TransactionSecurityPolicy """ - transactionSecurityPolicies( - filter: SalesforceTransactionSecurityPolicyConnectionFilter - sortByCustomField: SalesforceTransactionSecurityPolicySortByFieldEnum - sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTransactionSecurityPolicysConnection + transactionSecurityPolicies(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTransactionSecurityPolicyConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTransactionSecurityPolicySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TransactionSecurityPolicies to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTransactionSecurityPolicysConnection """ Collection of Salesforce UndecidedEventRelation """ - undecidedEventRelations( - filter: SalesforceUndecidedEventRelationConnectionFilter - sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum - sortByField: SalesforceUndecidedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUndecidedEventRelationsConnection + undecidedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUndecidedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUndecidedEventRelationsConnection """ Collection of Salesforce User """ - users( - filter: SalesforceUserConnectionFilter - sortByCustomField: SalesforceUserSortByFieldEnum - sortByField: SalesforceUserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUsersConnection + users(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Users to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUsersConnection """ Collection of Salesforce User """ - delegatedUsers( - filter: SalesforceUserConnectionFilter - sortByCustomField: SalesforceUserSortByFieldEnum - sortByField: SalesforceUserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUsersConnection + delegatedUsers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Users to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUsersConnection """ Collection of Salesforce User """ - managedUsers( - filter: SalesforceUserConnectionFilter - sortByCustomField: SalesforceUserSortByFieldEnum - sortByField: SalesforceUserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUsersConnection + managedUsers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Users to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUsersConnection """ Collection of Salesforce UserAppInfo """ - userAppInfos( - filter: SalesforceUserAppInfoConnectionFilter - sortByCustomField: SalesforceUserAppInfoSortByFieldEnum - sortByField: SalesforceUserAppInfoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserAppInfosConnection + userAppInfos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserAppInfoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserAppInfoSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserAppInfoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserAppInfos to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserAppInfosConnection """ Collection of Salesforce UserAppMenuCustomization """ - userAppMenuCustomizations( - filter: SalesforceUserAppMenuCustomizationConnectionFilter - sortByCustomField: SalesforceUserAppMenuCustomizationSortByFieldEnum - sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserAppMenuCustomizationsConnection + userAppMenuCustomizations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserAppMenuCustomizationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserAppMenuCustomizationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserAppMenuCustomizations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserAppMenuCustomizationsConnection """ Collection of Salesforce UserAppMenuCustomizationShare """ - userAppMenuCustomizationShares( - filter: SalesforceUserAppMenuCustomizationShareConnectionFilter - sortByCustomField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum - sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserAppMenuCustomizationSharesConnection + userAppMenuCustomizationShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserAppMenuCustomizationShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserAppMenuCustomizationShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserAppMenuCustomizationSharesConnection """ Collection of Salesforce UserFeed """ - userFeeds( - filter: SalesforceUserFeedConnectionFilter - sortByCustomField: SalesforceUserFeedSortByFieldEnum - sortByField: SalesforceUserFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserFeedsConnection + userFeeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserFeedsConnection """ Collection of Salesforce UserFeed """ - feeds( - filter: SalesforceUserFeedConnectionFilter - sortByCustomField: SalesforceUserFeedSortByFieldEnum - sortByField: SalesforceUserFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserFeedsConnection """ Collection of Salesforce UserListView """ - userListViews( - filter: SalesforceUserListViewConnectionFilter - sortByCustomField: SalesforceUserListViewSortByFieldEnum - sortByField: SalesforceUserListViewSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserListViewsConnection + userListViews(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserListViewConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserListViewSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserListViewSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserListViews to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserListViewsConnection """ Collection of Salesforce UserListViewCriterion """ - userListViewCriterions( - filter: SalesforceUserListViewCriterionConnectionFilter - sortByCustomField: SalesforceUserListViewCriterionSortByFieldEnum - sortByField: SalesforceUserListViewCriterionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserListViewCriterionsConnection + userListViewCriterions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserListViewCriterionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserListViewCriterionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserListViewCriterionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserListViewCriterions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserListViewCriterionsConnection """ Collection of Salesforce UserLogin """ - userLogins( - filter: SalesforceUserLoginConnectionFilter - sortByCustomField: SalesforceUserLoginSortByFieldEnum - sortByField: SalesforceUserLoginSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserLoginsConnection + userLogins(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserLoginConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserLoginSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserLoginSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserLogins to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserLoginsConnection """ Collection of Salesforce UserPackageLicense """ - userPackageLicenses( - filter: SalesforceUserPackageLicenseConnectionFilter - sortByCustomField: SalesforceUserPackageLicenseSortByFieldEnum - sortByField: SalesforceUserPackageLicenseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserPackageLicensesConnection + userPackageLicenses(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserPackageLicenseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserPackageLicenseSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserPackageLicenseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserPackageLicenses to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserPackageLicensesConnection """ Collection of Salesforce UserPreference """ - userPreferences( - filter: SalesforceUserPreferenceConnectionFilter - sortByCustomField: SalesforceUserPreferenceSortByFieldEnum - sortByField: SalesforceUserPreferenceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserPreferencesConnection + userPreferences(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserPreferenceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserPreferenceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserPreferenceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserPreferences to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserPreferencesConnection """ Collection of Salesforce UserProvAccount """ - userProvAccounts( - filter: SalesforceUserProvAccountConnectionFilter - sortByCustomField: SalesforceUserProvAccountSortByFieldEnum - sortByField: SalesforceUserProvAccountSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvAccountsConnection + userProvAccounts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvAccountConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvAccountSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvAccountSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvAccounts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvAccountsConnection """ Collection of Salesforce UserProvAccountStaging """ - userProvAccountStagings( - filter: SalesforceUserProvAccountStagingConnectionFilter - sortByCustomField: SalesforceUserProvAccountStagingSortByFieldEnum - sortByField: SalesforceUserProvAccountStagingSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvAccountStagingsConnection + userProvAccountStagings(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvAccountStagingConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvAccountStagingSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvAccountStagingSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvAccountStagings to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvAccountStagingsConnection """ Collection of Salesforce UserProvMockTarget """ - userProvMockTargets( - filter: SalesforceUserProvMockTargetConnectionFilter - sortByCustomField: SalesforceUserProvMockTargetSortByFieldEnum - sortByField: SalesforceUserProvMockTargetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvMockTargetsConnection + userProvMockTargets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvMockTargetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvMockTargetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvMockTargetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvMockTargets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvMockTargetsConnection """ Collection of Salesforce UserProvisioningConfig """ - userProvisioningConfigs( - filter: SalesforceUserProvisioningConfigConnectionFilter - sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum - sortByField: SalesforceUserProvisioningConfigSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningConfigsConnection + userProvisioningConfigs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningConfigConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningConfigSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvisioningConfigs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningConfigsConnection """ Collection of Salesforce UserProvisioningLog """ - userProvisioningLogs( - filter: SalesforceUserProvisioningLogConnectionFilter - sortByCustomField: SalesforceUserProvisioningLogSortByFieldEnum - sortByField: SalesforceUserProvisioningLogSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningLogsConnection + userProvisioningLogs(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningLogConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvisioningLogSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningLogSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvisioningLogs to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningLogsConnection """ Collection of Salesforce UserProvisioningRequest """ - userProvisioningRequests( - filter: SalesforceUserProvisioningRequestConnectionFilter - sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum - sortByField: SalesforceUserProvisioningRequestSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningRequestsConnection + userProvisioningRequests(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningRequestConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningRequestSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningRequestsConnection """ Collection of Salesforce UserProvisioningRequestShare """ - userProvisioningRequestShares( - filter: SalesforceUserProvisioningRequestShareConnectionFilter - sortByCustomField: SalesforceUserProvisioningRequestShareSortByFieldEnum - sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserProvisioningRequestSharesConnection + userProvisioningRequestShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserProvisioningRequestShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserProvisioningRequestShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserProvisioningRequestShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserProvisioningRequestSharesConnection """ Collection of Salesforce UserRole """ - userRoles( - filter: SalesforceUserRoleConnectionFilter - sortByCustomField: SalesforceUserRoleSortByFieldEnum - sortByField: SalesforceUserRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserRolesConnection + userRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserRolesConnection """ Collection of Salesforce UserShare """ - userShares( - filter: SalesforceUserShareConnectionFilter - sortByCustomField: SalesforceUserShareSortByFieldEnum - sortByField: SalesforceUserShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserSharesConnection + userShares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserSharesConnection """ Collection of Salesforce UserShare """ - shares( - filter: SalesforceUserShareConnectionFilter - sortByCustomField: SalesforceUserShareSortByFieldEnum - sortByField: SalesforceUserShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserSharesConnection + shares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserSharesConnection """ Collection of Salesforce VerificationHistory """ - verificationHistories( - filter: SalesforceVerificationHistoryConnectionFilter - sortByCustomField: SalesforceVerificationHistorySortByFieldEnum - sortByField: SalesforceVerificationHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceVerificationHistorysConnection + verificationHistories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceVerificationHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceVerificationHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceVerificationHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceVerificationHistorysConnection """ Collection of Salesforce Vote """ - votes( - filter: SalesforceVoteConnectionFilter - sortByCustomField: SalesforceVoteSortByFieldEnum - sortByField: SalesforceVoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceVotesConnection + votes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceVoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceVoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceVoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Votes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceVotesConnection """ Collection of Salesforce WaveCompatibilityCheckItem """ - waveCompatibilityCheckItems( - filter: SalesforceWaveCompatibilityCheckItemConnectionFilter - sortByCustomField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum - sortByField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceWaveCompatibilityCheckItemsConnection + waveCompatibilityCheckItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceWaveCompatibilityCheckItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of WaveCompatibilityCheckItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceWaveCompatibilityCheckItemsConnection """ Collection of Salesforce WebLink """ - webLinks( - filter: SalesforceWebLinkConnectionFilter - sortByCustomField: SalesforceWebLinkSortByFieldEnum - sortByField: SalesforceWebLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceWebLinksConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + webLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceWebLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceWebLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceWebLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of WebLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceWebLinksConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -231760,423 +243673,617 @@ type SalesforceContact implements OneGraphNode { """ Collection of Salesforce AcceptedEventRelation """ - acceptedEventRelations( - filter: SalesforceAcceptedEventRelationConnectionFilter - sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum - sortByField: SalesforceAcceptedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAcceptedEventRelationsConnection + acceptedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAcceptedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAcceptedEventRelationsConnection """ Collection of Salesforce AccountContactRole """ - accountContactRoles( - filter: SalesforceAccountContactRoleConnectionFilter - sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum - sortByField: SalesforceAccountContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountContactRolesConnection + accountContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountContactRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountContactRolesConnection """ Collection of Salesforce Asset """ - assets( - filter: SalesforceAssetConnectionFilter - sortByCustomField: SalesforceAssetSortByFieldEnum - sortByField: SalesforceAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetsConnection + assets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Assets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetsConnection """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce CampaignMember """ - campaignMembers( - filter: SalesforceCampaignMemberConnectionFilter - sortByCustomField: SalesforceCampaignMemberSortByFieldEnum - sortByField: SalesforceCampaignMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignMembersConnection + campaignMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignMembersConnection """ Collection of Salesforce Case """ - cases( - filter: SalesforceCaseConnectionFilter - sortByCustomField: SalesforceCaseSortByFieldEnum - sortByField: SalesforceCaseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCasesConnection + cases(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Cases to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCasesConnection """ Collection of Salesforce CaseContactRole """ - caseContactRoles( - filter: SalesforceCaseContactRoleConnectionFilter - sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum - sortByField: SalesforceCaseContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseContactRolesConnection + caseContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseContactRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseContactRolesConnection """ Collection of Salesforce CaseTeamMember """ - caseTeamMembers( - filter: SalesforceCaseTeamMemberConnectionFilter - sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum - sortByField: SalesforceCaseTeamMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseTeamMembersConnection + caseTeamMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseTeamMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseTeamMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseTeamMembersConnection """ Collection of Salesforce CaseTeamTemplateMember """ - caseTeamTemplateMembers( - filter: SalesforceCaseTeamTemplateMemberConnectionFilter - sortByCustomField: SalesforceCaseTeamTemplateMemberSortByFieldEnum - sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseTeamTemplateMembersConnection + caseTeamTemplateMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseTeamTemplateMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseTeamTemplateMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseTeamTemplateMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseTeamTemplateMembersConnection """ Collection of Salesforce CollaborationGroupRecord """ - recordAssociatedGroups( - filter: SalesforceCollaborationGroupRecordConnectionFilter - sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum - sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupRecordsConnection + recordAssociatedGroups(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce Contact """ - contacts( - filter: SalesforceContactConnectionFilter - sortByCustomField: SalesforceContactSortByFieldEnum - sortByField: SalesforceContactSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactsConnection + contacts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContactSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contacts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactsConnection """ Collection of Salesforce ContactCleanInfo """ - contactCleanInfos( - filter: SalesforceContactCleanInfoConnectionFilter - sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum - sortByField: SalesforceContactCleanInfoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactCleanInfosConnection + contactCleanInfos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactCleanInfoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactCleanInfoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContactCleanInfos to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactCleanInfosConnection """ Collection of Salesforce ContactFeed """ - feeds( - filter: SalesforceContactFeedConnectionFilter - sortByCustomField: SalesforceContactFeedSortByFieldEnum - sortByField: SalesforceContactFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContactFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContactFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactFeedsConnection """ Collection of Salesforce ContactHistory """ - histories( - filter: SalesforceContactHistoryConnectionFilter - sortByCustomField: SalesforceContactHistorySortByFieldEnum - sortByField: SalesforceContactHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactHistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContactHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContactHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactHistorysConnection """ Collection of Salesforce ContactShare """ - shares( - filter: SalesforceContactShareConnectionFilter - sortByCustomField: SalesforceContactShareSortByFieldEnum - sortByField: SalesforceContactShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactSharesConnection + shares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContactShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContactShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactSharesConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions( - filter: SalesforceContentDistributionConnectionFilter - sortByCustomField: SalesforceContentDistributionSortByFieldEnum - sortByField: SalesforceContentDistributionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionsConnection + contentDistributions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce Contract """ - contractsSigned( - filter: SalesforceContractConnectionFilter - sortByCustomField: SalesforceContractSortByFieldEnum - sortByField: SalesforceContractSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractsConnection + contractsSigned(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContractSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contracts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractsConnection """ Collection of Salesforce ContractContactRole """ - contractContactRoles( - filter: SalesforceContractContactRoleConnectionFilter - sortByCustomField: SalesforceContractContactRoleSortByFieldEnum - sortByField: SalesforceContractContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractContactRolesConnection + contractContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContractContactRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContractContactRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractContactRolesConnection """ Collection of Salesforce DeclinedEventRelation """ - declinedEventRelations( - filter: SalesforceDeclinedEventRelationConnectionFilter - sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum - sortByField: SalesforceDeclinedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDeclinedEventRelationsConnection + declinedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDeclinedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDeclinedEventRelationsConnection """ Collection of Salesforce DuplicateRecordItem """ - duplicateRecordItems( - filter: SalesforceDuplicateRecordItemConnectionFilter - sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum - sortByField: SalesforceDuplicateRecordItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDuplicateRecordItemsConnection + duplicateRecordItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDuplicateRecordItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDuplicateRecordItemsConnection """ Collection of Salesforce EmailMessageRelation """ - emailMessageRelations( - filter: SalesforceEmailMessageRelationConnectionFilter - sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum - sortByField: SalesforceEmailMessageRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessageRelationsConnection + emailMessageRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessageRelationsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events( - filter: SalesforceEventConnectionFilter - sortByCustomField: SalesforceEventSortByFieldEnum - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + events(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce EventRelation """ - eventRelations( - filter: SalesforceEventRelationConnectionFilter - sortByCustomField: SalesforceEventRelationSortByFieldEnum - sortByField: SalesforceEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventRelationsConnection + eventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventRelationsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Lead """ - leads( - filter: SalesforceLeadConnectionFilter - sortByCustomField: SalesforceLeadSortByFieldEnum - sortByField: SalesforceLeadSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadsConnection + leads(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Leads to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadsConnection """ Collection of Salesforce Note """ - notes( - filter: SalesforceNoteConnectionFilter - sortByCustomField: SalesforceNoteSortByFieldEnum - sortByField: SalesforceNoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceNotesConnection + notes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceNoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceNoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Notes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceNotesConnection """ Collection of Salesforce OpportunityContactRole """ - opportunityContactRoles( - filter: SalesforceOpportunityContactRoleConnectionFilter - sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum - sortByField: SalesforceOpportunityContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityContactRolesConnection + opportunityContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityContactRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityContactRolesConnection """ Collection of Salesforce Order """ - orders( - filter: SalesforceOrderConnectionFilter - sortByCustomField: SalesforceOrderSortByFieldEnum - sortByField: SalesforceOrderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrdersConnection + orders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Orders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrdersConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: SalesforceTaskSortByFieldEnum - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection + tasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection """ Collection of Salesforce UndecidedEventRelation """ - undecidedEventRelations( - filter: SalesforceUndecidedEventRelationConnectionFilter - sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum - sortByField: SalesforceUndecidedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUndecidedEventRelationsConnection + undecidedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUndecidedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUndecidedEventRelationsConnection """ Collection of Salesforce User """ - users( - filter: SalesforceUserConnectionFilter - sortByCustomField: SalesforceUserSortByFieldEnum - sortByField: SalesforceUserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUsersConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + users(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Users to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUsersConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -232549,280 +244656,409 @@ type SalesforceLead implements OneGraphNode { """ Collection of Salesforce AcceptedEventRelation """ - acceptedEventRelations( - filter: SalesforceAcceptedEventRelationConnectionFilter - sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum - sortByField: SalesforceAcceptedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAcceptedEventRelationsConnection + acceptedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAcceptedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAcceptedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAcceptedEventRelationsConnection """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce CampaignMember """ - campaignMembers( - filter: SalesforceCampaignMemberConnectionFilter - sortByCustomField: SalesforceCampaignMemberSortByFieldEnum - sortByField: SalesforceCampaignMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCampaignMembersConnection + campaignMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCampaignMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCampaignMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCampaignMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCampaignMembersConnection """ Collection of Salesforce CollaborationGroupRecord """ - recordAssociatedGroups( - filter: SalesforceCollaborationGroupRecordConnectionFilter - sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum - sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupRecordsConnection + recordAssociatedGroups(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions( - filter: SalesforceContentDistributionConnectionFilter - sortByCustomField: SalesforceContentDistributionSortByFieldEnum - sortByField: SalesforceContentDistributionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionsConnection + contentDistributions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce DeclinedEventRelation """ - declinedEventRelations( - filter: SalesforceDeclinedEventRelationConnectionFilter - sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum - sortByField: SalesforceDeclinedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDeclinedEventRelationsConnection + declinedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDeclinedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDeclinedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDeclinedEventRelationsConnection """ Collection of Salesforce DuplicateRecordItem """ - duplicateRecordItems( - filter: SalesforceDuplicateRecordItemConnectionFilter - sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum - sortByField: SalesforceDuplicateRecordItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDuplicateRecordItemsConnection + duplicateRecordItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDuplicateRecordItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDuplicateRecordItemsConnection """ Collection of Salesforce EmailMessageRelation """ - emailMessageRelations( - filter: SalesforceEmailMessageRelationConnectionFilter - sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum - sortByField: SalesforceEmailMessageRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessageRelationsConnection + emailMessageRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessageRelationsConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events( - filter: SalesforceEventConnectionFilter - sortByCustomField: SalesforceEventSortByFieldEnum - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + events(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce EventRelation """ - eventRelations( - filter: SalesforceEventRelationConnectionFilter - sortByCustomField: SalesforceEventRelationSortByFieldEnum - sortByField: SalesforceEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventRelationsConnection + eventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventRelationsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce LeadCleanInfo """ - leadCleanInfos( - filter: SalesforceLeadCleanInfoConnectionFilter - sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum - sortByField: SalesforceLeadCleanInfoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadCleanInfosConnection + leadCleanInfos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadCleanInfoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadCleanInfoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LeadCleanInfos to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadCleanInfosConnection """ Collection of Salesforce LeadFeed """ - feeds( - filter: SalesforceLeadFeedConnectionFilter - sortByCustomField: SalesforceLeadFeedSortByFieldEnum - sortByField: SalesforceLeadFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LeadFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadFeedsConnection """ Collection of Salesforce LeadHistory """ - histories( - filter: SalesforceLeadHistoryConnectionFilter - sortByCustomField: SalesforceLeadHistorySortByFieldEnum - sortByField: SalesforceLeadHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadHistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LeadHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadHistorysConnection """ Collection of Salesforce LeadShare """ - shares( - filter: SalesforceLeadShareConnectionFilter - sortByCustomField: SalesforceLeadShareSortByFieldEnum - sortByField: SalesforceLeadShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadSharesConnection + shares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of LeadShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadSharesConnection """ Collection of Salesforce Note """ - notes( - filter: SalesforceNoteConnectionFilter - sortByCustomField: SalesforceNoteSortByFieldEnum - sortByField: SalesforceNoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceNotesConnection + notes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceNoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceNoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Notes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceNotesConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: SalesforceTaskSortByFieldEnum - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection + tasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection """ Collection of Salesforce UndecidedEventRelation """ - undecidedEventRelations( - filter: SalesforceUndecidedEventRelationConnectionFilter - sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum - sortByField: SalesforceUndecidedEventRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUndecidedEventRelationsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + undecidedEventRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUndecidedEventRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUndecidedEventRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUndecidedEventRelationsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -233002,13 +245238,17 @@ type IntercomTag { """ Users with this tag. """ - users( - createdDaysAgo: Int - sortByField: IntercomUsersSortByField - orderBy: IntercomSortOrderBy - after: String - first: Int - ): IntercomUsersConnection + users(""" + Limit results to users that were created in that last number of days + """ createdDaysAgo: Int, """ + What field to sort the results by. Defaults to CREATED_AT. + """ sortByField: IntercomUsersSortByField, """ + Return the users in ascending or descending order. Defaults to DESC. + """ orderBy: IntercomSortOrderBy, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Number of user to fetch, maximum is 60 + """ first: Int): IntercomUsersConnection } """ @@ -233307,18 +245547,25 @@ type IntercomUser implements IntercomAuthor { """ List of events for this user. """ - events(after: String, first: Int): IntercomEventssConnection + events(""" + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Number of events to fetch, defaults to 50 + """ first: Int): IntercomEventssConnection """ Conversations for this user. Conversation are how you can communicate with users in Intercom. """ - conversations( - displayAsPlaintext: Boolean - unread: Boolean - sortByField: IntercomConversationSortByField - orderBy: IntercomSortOrderBy - ): IntercomConversationsConnection + conversations(""" + When true, retrieves conversation messages in plain text. Defaults to false. + """ displayAsPlaintext: Boolean, """ + Defaults to false. When true, fetches just unread conversations. + """ unread: Boolean, """ + What field to sort the results by. Defaults to UPDATED_AT. + """ sortByField: IntercomConversationSortByField, """ + Return the conversations in ascending or descending order. Defaults to DESC. + """ orderBy: IntercomSortOrderBy): IntercomConversationsConnection } """ @@ -233596,423 +245843,617 @@ type SalesforceAccount implements OneGraphNode { """ Collection of Salesforce Account """ - childAccounts( - filter: SalesforceAccountConnectionFilter - sortByCustomField: SalesforceAccountSortByFieldEnum - sortByField: SalesforceAccountSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountsConnection + childAccounts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Accounts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountsConnection """ Collection of Salesforce AccountCleanInfo """ - accountCleanInfos( - filter: SalesforceAccountCleanInfoConnectionFilter - sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum - sortByField: SalesforceAccountCleanInfoSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountCleanInfosConnection + accountCleanInfos(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountCleanInfoConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountCleanInfoSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountCleanInfos to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountCleanInfosConnection """ Collection of Salesforce AccountContactRole """ - accountContactRoles( - filter: SalesforceAccountContactRoleConnectionFilter - sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum - sortByField: SalesforceAccountContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountContactRolesConnection + accountContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountContactRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountContactRolesConnection """ Collection of Salesforce AccountFeed """ - feeds( - filter: SalesforceAccountFeedConnectionFilter - sortByCustomField: SalesforceAccountFeedSortByFieldEnum - sortByField: SalesforceAccountFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountFeedsConnection """ Collection of Salesforce AccountHistory """ - histories( - filter: SalesforceAccountHistoryConnectionFilter - sortByCustomField: SalesforceAccountHistorySortByFieldEnum - sortByField: SalesforceAccountHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountHistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountHistorysConnection """ Collection of Salesforce AccountPartner """ - accountPartnersFrom( - filter: SalesforceAccountPartnerConnectionFilter - sortByCustomField: SalesforceAccountPartnerSortByFieldEnum - sortByField: SalesforceAccountPartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountPartnersConnection + accountPartnersFrom(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountPartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountPartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountPartnersConnection """ Collection of Salesforce AccountPartner """ - accountPartnersTo( - filter: SalesforceAccountPartnerConnectionFilter - sortByCustomField: SalesforceAccountPartnerSortByFieldEnum - sortByField: SalesforceAccountPartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountPartnersConnection + accountPartnersTo(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountPartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountPartnerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountPartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountPartners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountPartnersConnection """ Collection of Salesforce AccountShare """ - shares( - filter: SalesforceAccountShareConnectionFilter - sortByCustomField: SalesforceAccountShareSortByFieldEnum - sortByField: SalesforceAccountShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAccountSharesConnection + shares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAccountShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAccountShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAccountShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of AccountShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAccountSharesConnection """ Collection of Salesforce Asset """ - assets( - filter: SalesforceAssetConnectionFilter - sortByCustomField: SalesforceAssetSortByFieldEnum - sortByField: SalesforceAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetsConnection + assets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Assets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetsConnection """ Collection of Salesforce Asset """ - providedAssets( - filter: SalesforceAssetConnectionFilter - sortByCustomField: SalesforceAssetSortByFieldEnum - sortByField: SalesforceAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetsConnection + providedAssets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Assets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetsConnection """ Collection of Salesforce Asset """ - servicedAssets( - filter: SalesforceAssetConnectionFilter - sortByCustomField: SalesforceAssetSortByFieldEnum - sortByField: SalesforceAssetSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAssetsConnection + servicedAssets(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAssetConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAssetSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAssetSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Assets to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAssetsConnection """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce Case """ - cases( - filter: SalesforceCaseConnectionFilter - sortByCustomField: SalesforceCaseSortByFieldEnum - sortByField: SalesforceCaseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCasesConnection + cases(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Cases to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCasesConnection """ Collection of Salesforce CollaborationGroupRecord """ - recordAssociatedGroups( - filter: SalesforceCollaborationGroupRecordConnectionFilter - sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum - sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupRecordsConnection + recordAssociatedGroups(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce Contact """ - contacts( - filter: SalesforceContactConnectionFilter - sortByCustomField: SalesforceContactSortByFieldEnum - sortByField: SalesforceContactSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContactsConnection + contacts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContactConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContactSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContactSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contacts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContactsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions( - filter: SalesforceContentDistributionConnectionFilter - sortByCustomField: SalesforceContentDistributionSortByFieldEnum - sortByField: SalesforceContentDistributionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionsConnection + contentDistributions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce Contract """ - contracts( - filter: SalesforceContractConnectionFilter - sortByCustomField: SalesforceContractSortByFieldEnum - sortByField: SalesforceContractSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContractsConnection + contracts(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContractConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContractSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContractSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Contracts to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContractsConnection """ Collection of Salesforce DuplicateRecordItem """ - duplicateRecordItems( - filter: SalesforceDuplicateRecordItemConnectionFilter - sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum - sortByField: SalesforceDuplicateRecordItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceDuplicateRecordItemsConnection + duplicateRecordItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceDuplicateRecordItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceDuplicateRecordItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceDuplicateRecordItemsConnection """ Collection of Salesforce EmailMessage """ - emails( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: SalesforceEmailMessageSortByFieldEnum - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events( - filter: SalesforceEventConnectionFilter - sortByCustomField: SalesforceEventSortByFieldEnum - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + events(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce Lead """ - leads( - filter: SalesforceLeadConnectionFilter - sortByCustomField: SalesforceLeadSortByFieldEnum - sortByField: SalesforceLeadSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceLeadsConnection + leads(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceLeadConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceLeadSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceLeadSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Leads to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceLeadsConnection """ Collection of Salesforce Note """ - notes( - filter: SalesforceNoteConnectionFilter - sortByCustomField: SalesforceNoteSortByFieldEnum - sortByField: SalesforceNoteSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceNotesConnection + notes(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceNoteConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceNoteSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceNoteSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Notes to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceNotesConnection """ Collection of Salesforce Opportunity """ - opportunities( - filter: SalesforceOpportunityConnectionFilter - sortByCustomField: SalesforceOpportunitySortByFieldEnum - sortByField: SalesforceOpportunitySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunitysConnection + opportunities(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunitySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunitySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Opportunities to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunitysConnection """ Collection of Salesforce OpportunityPartner """ - opportunityPartnersTo( - filter: SalesforceOpportunityPartnerConnectionFilter - sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum - sortByField: SalesforceOpportunityPartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOpportunityPartnersConnection + opportunityPartnersTo(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOpportunityPartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOpportunityPartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOpportunityPartnersConnection """ Collection of Salesforce Order """ - orders( - filter: SalesforceOrderConnectionFilter - sortByCustomField: SalesforceOrderSortByFieldEnum - sortByField: SalesforceOrderSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceOrdersConnection + orders(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceOrderConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceOrderSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceOrderSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Orders to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceOrdersConnection """ Collection of Salesforce Partner """ - partnersFrom( - filter: SalesforcePartnerConnectionFilter - sortByCustomField: SalesforcePartnerSortByFieldEnum - sortByField: SalesforcePartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePartnersConnection + partnersFrom(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePartnerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Partners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePartnersConnection """ Collection of Salesforce Partner """ - partnersTo( - filter: SalesforcePartnerConnectionFilter - sortByCustomField: SalesforcePartnerSortByFieldEnum - sortByField: SalesforcePartnerSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforcePartnersConnection + partnersTo(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforcePartnerConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforcePartnerSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforcePartnerSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Partners to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforcePartnersConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: SalesforceTaskSortByFieldEnum - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection + tasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection """ Collection of Salesforce User """ - users( - filter: SalesforceUserConnectionFilter - sortByCustomField: SalesforceUserSortByFieldEnum - sortByField: SalesforceUserSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUsersConnection + users(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Users to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUsersConnection """ Collection of Salesforce UserRole """ - userRoles( - filter: SalesforceUserRoleConnectionFilter - sortByCustomField: SalesforceUserRoleSortByFieldEnum - sortByField: SalesforceUserRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceUserRolesConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + userRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceUserRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceUserRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceUserRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of UserRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceUserRolesConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -236233,269 +248674,393 @@ type SalesforceCase implements OneGraphNode { """ Collection of Salesforce Attachment """ - attachments( - filter: SalesforceAttachmentConnectionFilter - sortByCustomField: SalesforceAttachmentSortByFieldEnum - sortByField: SalesforceAttachmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceAttachmentsConnection + attachments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceAttachmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceAttachmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceAttachmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Attachments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceAttachmentsConnection """ Collection of Salesforce Case """ - cases( - filter: SalesforceCaseConnectionFilter - sortByCustomField: SalesforceCaseSortByFieldEnum - sortByField: SalesforceCaseSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCasesConnection + cases(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Cases to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCasesConnection """ Collection of Salesforce CaseComment """ - caseComments( - filter: SalesforceCaseCommentConnectionFilter - sortByCustomField: SalesforceCaseCommentSortByFieldEnum - sortByField: SalesforceCaseCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseCommentsConnection + caseComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseCommentsConnection """ Collection of Salesforce CaseContactRole """ - caseContactRoles( - filter: SalesforceCaseContactRoleConnectionFilter - sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum - sortByField: SalesforceCaseContactRoleSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseContactRolesConnection + caseContactRoles(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseContactRoleConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseContactRoleSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseContactRoles to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseContactRolesConnection """ Collection of Salesforce CaseFeed """ - feeds( - filter: SalesforceCaseFeedConnectionFilter - sortByCustomField: SalesforceCaseFeedSortByFieldEnum - sortByField: SalesforceCaseFeedSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseFeedsConnection + feeds(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseFeedConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseFeedSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseFeedSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseFeeds to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseFeedsConnection """ Collection of Salesforce CaseHistory """ - histories( - filter: SalesforceCaseHistoryConnectionFilter - sortByCustomField: SalesforceCaseHistorySortByFieldEnum - sortByField: SalesforceCaseHistorySortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseHistorysConnection + histories(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseHistoryConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseHistorySortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseHistorySortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseHistories to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseHistorysConnection """ Collection of Salesforce CaseShare """ - shares( - filter: SalesforceCaseShareConnectionFilter - sortByCustomField: SalesforceCaseShareSortByFieldEnum - sortByField: SalesforceCaseShareSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseSharesConnection + shares(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseShareConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseShareSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseShareSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseShares to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseSharesConnection """ Collection of Salesforce CaseSolution """ - caseSolutions( - filter: SalesforceCaseSolutionConnectionFilter - sortByCustomField: SalesforceCaseSolutionSortByFieldEnum - sortByField: SalesforceCaseSolutionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseSolutionsConnection + caseSolutions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseSolutionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseSolutionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseSolutionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseSolutions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseSolutionsConnection """ Collection of Salesforce CaseTeamMember """ - teamMembers( - filter: SalesforceCaseTeamMemberConnectionFilter - sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum - sortByField: SalesforceCaseTeamMemberSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseTeamMembersConnection + teamMembers(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseTeamMemberConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseTeamMemberSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseTeamMembers to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseTeamMembersConnection """ Collection of Salesforce CaseTeamTemplateRecord """ - teamTemplateRecords( - filter: SalesforceCaseTeamTemplateRecordConnectionFilter - sortByCustomField: SalesforceCaseTeamTemplateRecordSortByFieldEnum - sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCaseTeamTemplateRecordsConnection + teamTemplateRecords(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCaseTeamTemplateRecordConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCaseTeamTemplateRecordSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CaseTeamTemplateRecords to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCaseTeamTemplateRecordsConnection """ Collection of Salesforce CollaborationGroupRecord """ - recordAssociatedGroups( - filter: SalesforceCollaborationGroupRecordConnectionFilter - sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum - sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceCollaborationGroupRecordsConnection + recordAssociatedGroups(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceCollaborationGroupRecordConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceCollaborationGroupRecordsConnection """ Collection of Salesforce ContentDistribution """ - contentDistributions( - filter: SalesforceContentDistributionConnectionFilter - sortByCustomField: SalesforceContentDistributionSortByFieldEnum - sortByField: SalesforceContentDistributionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDistributionsConnection + contentDistributions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDistributionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDistributionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDistributionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDistributionsConnection """ Collection of Salesforce ContentDocumentLink """ - contentDocumentLinks( - filter: SalesforceContentDocumentLinkConnectionFilter - sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum - sortByField: SalesforceContentDocumentLinkSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentDocumentLinksConnection + contentDocumentLinks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentDocumentLinkConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentDocumentLinkSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentDocumentLinksConnection """ Collection of Salesforce ContentVersion """ - contentVersions( - filter: SalesforceContentVersionConnectionFilter - sortByCustomField: SalesforceContentVersionSortByFieldEnum - sortByField: SalesforceContentVersionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceContentVersionsConnection + contentVersions(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceContentVersionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceContentVersionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceContentVersionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ContentVersions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceContentVersionsConnection """ Collection of Salesforce EmailMessage """ - emailMessages( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: SalesforceEmailMessageSortByFieldEnum - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emailMessages(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce EmailMessage """ - emails( - filter: SalesforceEmailMessageConnectionFilter - sortByCustomField: SalesforceEmailMessageSortByFieldEnum - sortByField: SalesforceEmailMessageSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEmailMessagesConnection + emails(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEmailMessageConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEmailMessageSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEmailMessageSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EmailMessages to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEmailMessagesConnection """ Collection of Salesforce EntitySubscription """ - feedSubscriptionsForEntity( - filter: SalesforceEntitySubscriptionConnectionFilter - sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum - sortByField: SalesforceEntitySubscriptionSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEntitySubscriptionsConnection + feedSubscriptionsForEntity(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEntitySubscriptionConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEntitySubscriptionSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEntitySubscriptionsConnection """ Collection of Salesforce Event """ - events( - filter: SalesforceEventConnectionFilter - sortByCustomField: SalesforceEventSortByFieldEnum - sortByField: SalesforceEventSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceEventsConnection + events(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceEventConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceEventSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceEventSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Events to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceEventsConnection """ Collection of Salesforce FeedComment """ - feedComments( - filter: SalesforceFeedCommentConnectionFilter - sortByCustomField: SalesforceFeedCommentSortByFieldEnum - sortByField: SalesforceFeedCommentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedCommentsConnection + feedComments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedCommentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedCommentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedCommentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedComments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedCommentsConnection """ Collection of Salesforce FeedItem """ - feedItems( - filter: SalesforceFeedItemConnectionFilter - sortByCustomField: SalesforceFeedItemSortByFieldEnum - sortByField: SalesforceFeedItemSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFeedItemsConnection + feedItems(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFeedItemConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFeedItemSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFeedItemSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FeedItems to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFeedItemsConnection """ Collection of Salesforce FlowRecordRelation """ - flowRecordRelations( - filter: SalesforceFlowRecordRelationConnectionFilter - sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum - sortByField: SalesforceFlowRecordRelationSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceFlowRecordRelationsConnection + flowRecordRelations(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceFlowRecordRelationConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceFlowRecordRelationSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceFlowRecordRelationsConnection """ Collection of Salesforce ProcessInstance """ - processInstances( - filter: SalesforceProcessInstanceConnectionFilter - sortByCustomField: SalesforceProcessInstanceSortByFieldEnum - sortByField: SalesforceProcessInstanceSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceProcessInstancesConnection + processInstances(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceProcessInstanceConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceProcessInstanceSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceProcessInstanceSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceProcessInstancesConnection """ Collection of Salesforce Task """ - tasks( - filter: SalesforceTaskConnectionFilter - sortByCustomField: SalesforceTaskSortByFieldEnum - sortByField: SalesforceTaskSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTasksConnection + tasks(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTaskConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTaskSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTaskSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of Tasks to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTasksConnection """ Collection of Salesforce TopicAssignment """ - topicAssignments( - filter: SalesforceTopicAssignmentConnectionFilter - sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum - sortByField: SalesforceTopicAssignmentSortByFieldEnum - orderBy: SalesforceSortOrderBy - after: String - first: Int - ): SalesforceTopicAssignmentsConnection - customFields(fields: [String!]): JSON! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + topicAssignments(""" + A filter to be used in determining which values should be returned by the collection. + """ filter: SalesforceTopicAssignmentConnectionFilter, """ + Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`. + """ sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum, """ + Field to sort the results by. Defaults to Id. + """ sortByField: SalesforceTopicAssignmentSortByFieldEnum, """ + Whether elements should be sorted in ascending or descending order. Default is ascending. + """ orderBy: SalesforceSortOrderBy, """ + Returns the elements in the list that come after the specified cursor + """ after: String, """ + Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60. + """ first: Int): SalesforceTopicAssignmentsConnection + customFields(""" + List of custom fields to return. By default, returns all custom fields. + """ fields: [String!]): JSON! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -236705,7 +249270,9 @@ type GitHubBaseRefForcePushedEvent implements OneGraphNode & GitHubNode { Identifies the fully qualified ref name for the 'base_ref_force_pushed' event. """ ref: GitHubRef - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -236719,7 +249286,15 @@ type GitHubPullRequestCommitCommentThread implements OneGraphNode & GitHubReposi """ The comments that exist in this thread. """ - comments(last: Int, first: Int, before: String, after: String): GitHubCommitCommentConnection! + comments(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCommitCommentConnection! """ The commit the comments were made on. """ @@ -236744,7 +249319,9 @@ type GitHubPullRequestCommitCommentThread implements OneGraphNode & GitHubReposi The repository associated with this node. """ repository: GitHubRepository! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -236993,21 +249570,30 @@ type GitHubSecurityAdvisory implements OneGraphNode & GitHubNode { """ Vulnerabilities associated with this Advisory """ - vulnerabilities( - last: Int - first: Int - before: String - after: String - severities: [GitHubSecurityAdvisorySeverity!] - package: String - ecosystem: GitHubSecurityAdvisoryEcosystem - orderBy: GitHubSecurityVulnerabilityOrder - ): GitHubSecurityVulnerabilityConnection! + vulnerabilities(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + A list of severities to filter vulnerabilities by. + """ severities: [GitHubSecurityAdvisorySeverity!], """ + A package name to filter vulnerabilities by. + """ package: String, """ + An ecosystem to filter vulnerabilities by. + """ ecosystem: GitHubSecurityAdvisoryEcosystem, """ + Ordering options for the returned topics. + """ orderBy: GitHubSecurityVulnerabilityOrder): GitHubSecurityVulnerabilityConnection! """ When the advisory was withdrawn, if it has been withdrawn """ withdrawnAt: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237087,7 +249673,9 @@ type GitHubRepositoryVulnerabilityAlert implements OneGraphNode & GitHubReposito The vulnerable requirements """ vulnerableRequirements: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237111,7 +249699,15 @@ type GitHubCommitCommentThread implements OneGraphNode & GitHubRepositoryNode & """ The comments that exist in this thread. """ - comments(last: Int, first: Int, before: String, after: String): GitHubCommitCommentConnection! + comments(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCommitCommentConnection! """ The commit the comments were made on. """ @@ -237132,7 +249728,9 @@ type GitHubCommitCommentThread implements OneGraphNode & GitHubRepositoryNode & The repository associated with this node. """ repository: GitHubRepository! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237171,7 +249769,9 @@ type GitHubDeployedEvent implements OneGraphNode & GitHubNode { The ref associated with the 'deployed' event. """ ref: GitHubRef - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237351,7 +249951,15 @@ type GitHubDeployment implements OneGraphNode & GitHubNode { """ A list of statuses associated with the deployment. """ - statuses(last: Int, first: Int, before: String, after: String): GitHubDeploymentStatusConnection + statuses(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubDeploymentStatusConnection """ The deployment task. """ @@ -237360,7 +249968,9 @@ type GitHubDeployment implements OneGraphNode & GitHubNode { Identifies the date and time when the object was last updated. """ updatedAt: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237407,7 +250017,9 @@ type GitHubDeploymentStatus implements OneGraphNode & GitHubNode { Identifies the date and time when the object was last updated. """ updatedAt: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237438,7 +250050,9 @@ type GitHubDeploymentEnvironmentChangedEvent implements OneGraphNode & GitHubNod PullRequest referenced by event. """ pullRequest: GitHubPullRequest! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237473,7 +250087,9 @@ type GitHubHeadRefDeletedEvent implements OneGraphNode & GitHubNode { PullRequest referenced by event. """ pullRequest: GitHubPullRequest! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237512,7 +250128,9 @@ type GitHubHeadRefForcePushedEvent implements OneGraphNode & GitHubNode { Identifies the fully qualified ref name for the 'head_ref_force_pushed' event. """ ref: GitHubRef - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237539,7 +250157,9 @@ type GitHubHeadRefRestoredEvent implements OneGraphNode & GitHubNode { PullRequest referenced by event. """ pullRequest: GitHubPullRequest! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237586,7 +250206,9 @@ type GitHubMergedEvent implements OneGraphNode & GitHubUniformResourceLocatable The HTTP URL for this merged event. """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237611,7 +250233,17 @@ type GitHubPullRequestReviewThread implements OneGraphNode & GitHubNode { """ A list of pull request comments associated with the thread. """ - comments(skip: Int, last: Int, first: Int, before: String, after: String): GitHubPullRequestReviewCommentConnection! + comments(""" + Skips the first _n_ elements in the list. + """ skip: Int, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubPullRequestReviewCommentConnection! """ The side of the diff on which this thread was placed. """ @@ -237664,7 +250296,9 @@ type GitHubPullRequestReviewThread implements OneGraphNode & GitHubNode { Whether or not the viewer can unresolve this thread """ viewerCanUnresolve: Boolean! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237695,7 +250329,9 @@ type GitHubReviewRequestRemovedEvent implements OneGraphNode & GitHubNode { Identifies the reviewer whose review request was removed. """ requestedReviewer: GitHubRequestedReviewer - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237726,7 +250362,9 @@ type GitHubReviewRequestedEvent implements OneGraphNode & GitHubNode { Identifies the reviewer whose review was requested. """ requestedReviewer: GitHubRequestedReviewer - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237753,7 +250391,9 @@ type GitHubAddedToProjectEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237789,7 +250429,9 @@ type GitHubAssignedEvent implements OneGraphNode & GitHubNode { """ user: GitHubUser @deprecated(reason: "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.") - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237833,7 +250475,9 @@ type GitHubClosedEvent implements OneGraphNode & GitHubUniformResourceLocatable The HTTP URL for this closed event. """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237860,7 +250504,9 @@ type GitHubCommentDeletedEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237895,7 +250541,9 @@ type GitHubConnectedEvent implements OneGraphNode & GitHubNode { Issue or pull request which was connected. """ subject: GitHubReferencedSubject! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237922,7 +250570,9 @@ type GitHubConvertedNoteToIssueEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -237973,7 +250623,9 @@ type GitHubCrossReferencedEvent implements OneGraphNode & GitHubUniformResourceL Checks if the target will be closed when the source is merged. """ willCloseTarget: Boolean! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238004,7 +250656,9 @@ type GitHubDemilestonedEvent implements OneGraphNode & GitHubNode { Object referenced by event. """ subject: GitHubMilestoneItem! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238039,7 +250693,9 @@ type GitHubDisconnectedEvent implements OneGraphNode & GitHubNode { Issue or pull request which was disconnected. """ subject: GitHubReferencedSubject! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238070,7 +250726,9 @@ type GitHubLabeledEvent implements OneGraphNode & GitHubNode { Identifies the `Labelable` associated with the event. """ labelable: GitHubLabelable! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238101,7 +250759,9 @@ type GitHubLockedEvent implements OneGraphNode & GitHubNode { Object that was locked. """ lockable: GitHubLockable! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238124,7 +250784,9 @@ type GitHubMarkedAsDuplicateEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238151,7 +250813,9 @@ type GitHubMentionedEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238187,7 +250851,9 @@ type GitHubMilestonedEvent implements OneGraphNode & GitHubNode { Object referenced by event. """ subject: GitHubMilestoneItem! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238214,7 +250880,9 @@ type GitHubMovedColumnsInProjectEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238241,7 +250909,9 @@ type GitHubPinnedEvent implements OneGraphNode & GitHubNode { Identifies the issue associated with the event. """ issue: GitHubIssue! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238289,7 +250959,9 @@ type GitHubReferencedEvent implements OneGraphNode & GitHubNode { Object referenced by event. """ subject: GitHubReferencedSubject! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238316,7 +250988,9 @@ type GitHubRemovedFromProjectEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238356,7 +251030,9 @@ type GitHubRenamedTitleEvent implements OneGraphNode & GitHubNode { Subject that was renamed. """ subject: GitHubRenamedTitleSubject! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238383,7 +251059,9 @@ type GitHubReopenedEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238410,7 +251088,9 @@ type GitHubSubscribedEvent implements OneGraphNode & GitHubNode { Object referenced by event. """ subscribable: GitHubSubscribable! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238441,7 +251121,9 @@ type GitHubTransferredEvent implements OneGraphNode & GitHubNode { Identifies the issue associated with the event. """ issue: GitHubIssue! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238460,7 +251142,15 @@ interface GitHubAssignable { """ A list of Users assigned to this object. """ - assignees(last: Int, first: Int, before: String, after: String): GitHubUserConnection! + assignees(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserConnection! } """ @@ -238492,7 +251182,9 @@ type GitHubUnassignedEvent implements OneGraphNode & GitHubNode { """ user: GitHubUser @deprecated(reason: "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.") - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238515,7 +251207,9 @@ type GitHubUnmarkedAsDuplicateEvent implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238542,7 +251236,9 @@ type GitHubUnpinnedEvent implements OneGraphNode & GitHubNode { Identifies the issue associated with the event. """ issue: GitHubIssue! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238561,13 +251257,17 @@ interface GitHubLabelable { """ A list of labels associated with the object. """ - labels( - last: Int - first: Int - before: String - after: String - orderBy: GitHubLabelOrder - ): GitHubLabelConnection + labels(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for labels returned from the connection. + """ orderBy: GitHubLabelOrder): GitHubLabelConnection } """ @@ -238594,7 +251294,9 @@ type GitHubUnlabeledEvent implements OneGraphNode & GitHubNode { Identifies the `Labelable` associated with the event. """ labelable: GitHubLabelable! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238640,7 +251342,9 @@ type GitHubUnlockedEvent implements OneGraphNode & GitHubNode { Object that was unlocked. """ lockable: GitHubLockable! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238747,7 +251451,15 @@ interface GitHubComment { """ A list of edits to this content. """ - userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection + userContentEdits(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserContentEditConnection """ Did the viewer author this comment. """ @@ -238803,22 +251515,30 @@ type GitHubTopic implements OneGraphNode & GitHubStarrable & GitHubNode { A list of related topics, including aliases of this topic, sorted with the most relevant first. Returns up to 10 Topics. """ - relatedTopics(first: Int): [GitHubTopic!]! + relatedTopics(""" + How many topics to return. + """ first: Int): [GitHubTopic!]! """ A list of users who have starred this starrable. """ - stargazers( - orderBy: GitHubStarOrder - last: Int - first: Int - before: String - after: String - ): GitHubStargazerConnection! + stargazers(""" + Order for connection + """ orderBy: GitHubStarOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubStargazerConnection! """ Returns a boolean indicating whether the viewing user has starred this starrable. """ viewerHasStarred: Boolean! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -238836,13 +251556,17 @@ interface GitHubStarrable { """ A list of users who have starred this starrable. """ - stargazers( - orderBy: GitHubStarOrder - last: Int - first: Int - before: String - after: String - ): GitHubStargazerConnection! + stargazers(""" + Order for connection + """ orderBy: GitHubStarOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubStargazerConnection! """ Returns a boolean indicating whether the viewing user has starred this starrable. """ @@ -238917,7 +251641,9 @@ interface GitHubRepositoryOwner { """ A URL pointing to the owner's public avatar. """ - avatarUrl(size: Int): String! + avatarUrl(""" + The size of the resulting square image. + """ size: Int): String! """ """ @@ -238929,37 +251655,56 @@ interface GitHubRepositoryOwner { """ A list of repositories this user has pinned to their profile """ - pinnedRepositories( - last: Int - first: Int - before: String - after: String - isLocked: Boolean - ownerAffiliations: [GitHubRepositoryAffiliation] - affiliations: [GitHubRepositoryAffiliation] - orderBy: GitHubRepositoryOrder - privacy: GitHubRepositoryPrivacy - ): GitHubRepositoryConnection! + pinnedRepositories(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + If non-null, filters repositories according to whether they have been locked + """ 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], """ + 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], """ + Ordering options for repositories returned from the connection + """ 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.") """ A list of repositories that the user owns. """ - repositories( - isFork: Boolean - last: Int - first: Int - before: String - after: String - isLocked: Boolean - ownerAffiliations: [GitHubRepositoryAffiliation] - affiliations: [GitHubRepositoryAffiliation] - orderBy: GitHubRepositoryOrder - privacy: GitHubRepositoryPrivacy - ): GitHubRepositoryConnection! + repositories(""" + If non-null, filters repositories according to whether they are forks of another repository + """ isFork: Boolean, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + If non-null, filters repositories according to whether they have been locked + """ 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], """ + 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], """ + Ordering options for repositories returned from the connection + """ orderBy: GitHubRepositoryOrder, """ + If non-null, filters repositories according to privacy + """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! """ Find Repository. """ - repository(name: String!): GitHubRepository + repository(""" + Name of Repository to find. + """ name: String!): GitHubRepository """ The HTTP URL for the owner. """ @@ -239051,7 +251796,9 @@ type GitHubLanguage implements OneGraphNode & GitHubNode { The name of the current language. """ name: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -239097,7 +251844,9 @@ type GitHubGistFile { """ UTF8 text data or null if the file is binary """ - text(truncate: Int): String + text(""" + Optionally truncate the returned file to this length. + """ truncate: Int): String } """ @@ -239143,7 +251892,15 @@ type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of comments associated with the gist """ - comments(last: Int, first: Int, before: String, after: String): GitHubGistCommentConnection! + comments(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubGistCommentConnection! """ Identifies the date and time when the object was created. """ @@ -239155,17 +251912,25 @@ type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ The files in this gist. """ - files(oid: String, limit: Int): [GitHubGistFile] + files(""" + The oid of the files to return + """ oid: String, """ + The maximum number of files to return. + """ limit: Int): [GitHubGistFile] """ A list of forks associated with the gist """ - forks( - orderBy: GitHubGistOrder - last: Int - first: Int - before: String - after: String - ): GitHubGistConnection! + forks(""" + Ordering options for gists returned from the connection + """ orderBy: GitHubGistOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubGistConnection! """ """ @@ -239197,13 +251962,17 @@ type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of users who have starred this starrable. """ - stargazers( - orderBy: GitHubStarOrder - last: Int - first: Int - before: String - after: String - ): GitHubStargazerConnection! + stargazers(""" + Order for connection + """ orderBy: GitHubStarOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubStargazerConnection! """ Identifies the date and time when the object was last updated. """ @@ -239216,7 +251985,9 @@ type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHu Returns a boolean indicating whether the viewing user has starred this starrable. """ viewerHasStarred: Boolean! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -239298,7 +252069,15 @@ type GitHubGistComment implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of edits to this content. """ - userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection + userContentEdits(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserContentEditConnection """ Check if the current viewer can delete this object. """ @@ -239319,7 +252098,9 @@ type GitHubGistComment implements OneGraphNode & GitHubUpdatableComment & GitHub Did the viewer author this comment. """ viewerDidAuthor: Boolean! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -239358,19 +252139,27 @@ interface GitHubProjectOwner { """ Find project by number. """ - project(number: Int!): GitHubProject + project(""" + The project number to find. + """ number: Int!): GitHubProject """ A list of projects under the owner. """ - projects( - last: Int - first: Int - before: String - after: String - states: [GitHubProjectState!] - search: String - orderBy: GitHubProjectOrder - ): GitHubProjectConnection! + projects(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + A list of states to filter the projects by. + """ states: [GitHubProjectState!], """ + Query to search projects by, currently only searching by name. + """ search: String, """ + Ordering options for projects returned from the connection + """ orderBy: GitHubProjectOrder): GitHubProjectConnection! """ The HTTP path listing owners projects """ @@ -239490,7 +252279,9 @@ type GitHubProjectCard implements OneGraphNode & GitHubNode { The HTTP URL for this card """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -239540,13 +252331,17 @@ type GitHubProjectColumn implements OneGraphNode & GitHubNode { """ List of cards in the column """ - cards( - archivedStates: [GitHubProjectCardArchivedState] - last: Int - first: Int - before: String - after: String - ): GitHubProjectCardConnection! + cards(""" + A list of archived states to filter the cards by + """ archivedStates: [GitHubProjectCardArchivedState], """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubProjectCardConnection! """ Identifies the date and time when the object was created. """ @@ -239583,7 +252378,9 @@ type GitHubProjectColumn implements OneGraphNode & GitHubNode { The HTTP URL for this project column """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -239649,7 +252446,15 @@ type GitHubProject implements OneGraphNode & GitHubUpdatable & GitHubNode & GitH """ List of columns in the project """ - columns(last: Int, first: Int, before: String, after: String): GitHubProjectColumnConnection! + columns(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubProjectColumnConnection! """ Identifies the date and time when the object was created. """ @@ -239681,13 +252486,17 @@ type GitHubProject implements OneGraphNode & GitHubUpdatable & GitHubNode & GitH """ List of pending cards in this project """ - pendingCards( - archivedStates: [GitHubProjectCardArchivedState] - last: Int - first: Int - before: String - after: String - ): GitHubProjectCardConnection! + pendingCards(""" + A list of archived states to filter the cards by + """ archivedStates: [GitHubProjectCardArchivedState], """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubProjectCardConnection! """ The HTTP path for this project """ @@ -239708,7 +252517,9 @@ type GitHubProject implements OneGraphNode & GitHubUpdatable & GitHubNode & GitH Check if the current viewer can update this object. """ viewerCanUpdate: Boolean! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -239779,16 +252590,23 @@ type GitHubMilestone implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of issues associated with the milestone. """ - issues( - last: Int - first: Int - before: String - after: String - filterBy: GitHubIssueFilters - states: [GitHubIssueState!] - labels: [String!] - orderBy: GitHubIssueOrder - ): GitHubIssueConnection! + issues(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filtering options for issues returned from the connection. + """ filterBy: GitHubIssueFilters, """ + A list of states to filter the issues by. + """ states: [GitHubIssueState!], """ + A list of label names to filter the pull requests by. + """ labels: [String!], """ + Ordering options for issues returned from the connection. + """ orderBy: GitHubIssueOrder): GitHubIssueConnection! """ Identifies the number of the milestone. """ @@ -239796,17 +252614,25 @@ type GitHubMilestone implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of pull requests associated with the milestone. """ - pullRequests( - last: Int - first: Int - before: String - after: String - orderBy: GitHubIssueOrder - baseRefName: String - headRefName: String - labels: [String!] - states: [GitHubPullRequestState!] - ): GitHubPullRequestConnection! + pullRequests(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for pull requests returned from the connection. + """ orderBy: GitHubIssueOrder, """ + The base ref name to filter the pull requests by. + """ baseRefName: String, """ + The head ref name to filter the pull requests by. + """ headRefName: String, """ + A list of label names to filter the pull requests by. + """ labels: [String!], """ + A list of states to filter the pull requests by. + """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! """ The repository associated with this milestone. """ @@ -239831,7 +252657,9 @@ type GitHubMilestone implements OneGraphNode & GitHubUniformResourceLocatable & The HTTP URL for this milestone """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -239975,16 +252803,23 @@ type GitHubLabel implements OneGraphNode & GitHubNode { """ A list of issues associated with this label. """ - issues( - last: Int - first: Int - before: String - after: String - filterBy: GitHubIssueFilters - states: [GitHubIssueState!] - labels: [String!] - orderBy: GitHubIssueOrder - ): GitHubIssueConnection! + issues(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filtering options for issues returned from the connection. + """ filterBy: GitHubIssueFilters, """ + A list of states to filter the issues by. + """ states: [GitHubIssueState!], """ + A list of label names to filter the pull requests by. + """ labels: [String!], """ + Ordering options for issues returned from the connection. + """ orderBy: GitHubIssueOrder): GitHubIssueConnection! """ Identifies the label name. """ @@ -239992,17 +252827,25 @@ type GitHubLabel implements OneGraphNode & GitHubNode { """ A list of pull requests associated with this label. """ - pullRequests( - last: Int - first: Int - before: String - after: String - orderBy: GitHubIssueOrder - baseRefName: String - headRefName: String - labels: [String!] - states: [GitHubPullRequestState!] - ): GitHubPullRequestConnection! + pullRequests(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for pull requests returned from the connection. + """ orderBy: GitHubIssueOrder, """ + The base ref name to filter the pull requests by. + """ baseRefName: String, """ + The head ref name to filter the pull requests by. + """ headRefName: String, """ + A list of label names to filter the pull requests by. + """ labels: [String!], """ + A list of states to filter the pull requests by. + """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! """ The repository associated with this label. """ @@ -240019,7 +252862,9 @@ type GitHubLabel implements OneGraphNode & GitHubNode { The HTTP URL for this label. """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -240091,7 +252936,15 @@ type GitHubOrganizationTeamsHovercardContext implements GitHubHovercardContext { """ Teams in this organization the user is a member of that are relevant """ - relevantTeams(last: Int, first: Int, before: String, after: String): GitHubTeamConnection! + relevantTeams(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubTeamConnection! """ The path for the full team list for this user """ @@ -240157,7 +253010,15 @@ type GitHubOrganizationsHovercardContext implements GitHubHovercardContext { """ Organizations this user is a member of that are relevant """ - relevantOrganizations(last: Int, first: Int, before: String, after: String): GitHubOrganizationConnection! + relevantOrganizations(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ The total number of organizations this user is in """ @@ -240287,7 +253148,15 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ A list of Users assigned to this object. """ - assignees(last: Int, first: Int, before: String, after: String): GitHubUserConnection! + assignees(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserConnection! """ The actor who authored the comment. """ @@ -240319,7 +253188,15 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ A list of comments associated with the Issue. """ - comments(last: Int, first: Int, before: String, after: String): GitHubIssueCommentConnection! + comments(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubIssueCommentConnection! """ Identifies the date and time when the object was created. """ @@ -240339,7 +253216,9 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ The hovercard information for this issue """ - hovercard(includeNotificationContexts: Boolean): GitHubHovercard! + hovercard(""" + Whether or not to include notification contexts + """ includeNotificationContexts: Boolean): GitHubHovercard! """ """ @@ -240351,13 +253230,17 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ A list of labels associated with the object. """ - labels( - last: Int - first: Int - before: String - after: String - orderBy: GitHubLabelOrder - ): GitHubLabelConnection + labels(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for labels returned from the connection. + """ orderBy: GitHubLabelOrder): GitHubLabelConnection """ The moment the editor made the last edit """ @@ -240377,17 +253260,29 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ A list of Users that are participating in the Issue conversation. """ - participants(last: Int, first: Int, before: String, after: String): GitHubUserConnection! + participants(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserConnection! """ List of project cards associated with this issue. """ - projectCards( - archivedStates: [GitHubProjectCardArchivedState] - last: Int - first: Int - before: String - after: String - ): GitHubProjectCardConnection! + projectCards(""" + A list of archived states to filter the cards by + """ archivedStates: [GitHubProjectCardArchivedState], """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubProjectCardConnection! """ Identifies when the comment was published at. """ @@ -240399,14 +253294,19 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ A list of Reactions left on the Issue. """ - reactions( - orderBy: GitHubReactionOrder - content: GitHubReactionContent - last: Int - first: Int - before: String - after: String - ): GitHubReactionConnection! + reactions(""" + Allows specifying the order in which reactions are returned. + """ orderBy: GitHubReactionOrder, """ + Allows filtering Reactions by emoji. + """ content: GitHubReactionContent, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubReactionConnection! """ The repository associated with this node. """ @@ -240422,20 +253322,36 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ A list of events, comments, commits, etc. associated with the issue. """ - timeline(last: Int, first: Int, before: String, after: String, since: String): GitHubIssueTimelineConnection! + timeline(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ 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.") """ A list of events, comments, commits, etc. associated with the issue. """ - timelineItems( - last: Int - first: Int - before: String - after: String - itemTypes: [GitHubIssueTimelineItemsItemType!] - skip: Int - since: String - ): GitHubIssueTimelineItemsConnection! + timelineItems(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filter timeline items by type. + """ itemTypes: [GitHubIssueTimelineItemsItemType!], """ + Skips the first _n_ elements in the list. + """ skip: Int, """ + Filter timeline items by a `since` timestamp. + """ since: String): GitHubIssueTimelineItemsConnection! """ Identifies the issue title. """ @@ -240451,7 +253367,15 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata """ A list of edits to this content. """ - userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection + userContentEdits(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserContentEditConnection """ Can user react to this subject """ @@ -240480,7 +253404,9 @@ type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdata Linked Salesforce Case """ salesforceCase: SalesforceCase - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -240567,14 +253493,19 @@ type GitHubIssueComment implements OneGraphNode & GitHubUpdatableComment & GitHu """ A list of Reactions left on the Issue. """ - reactions( - orderBy: GitHubReactionOrder - content: GitHubReactionContent - last: Int - first: Int - before: String - after: String - ): GitHubReactionConnection! + reactions(""" + Allows specifying the order in which reactions are returned. + """ orderBy: GitHubReactionOrder, """ + Allows filtering Reactions by emoji. + """ content: GitHubReactionContent, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubReactionConnection! """ The repository associated with this node. """ @@ -240594,7 +253525,15 @@ type GitHubIssueComment implements OneGraphNode & GitHubUpdatableComment & GitHu """ A list of edits to this content. """ - userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection + userContentEdits(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserContentEditConnection """ Check if the current viewer can delete this object. """ @@ -240631,7 +253570,9 @@ type GitHubIssueComment implements OneGraphNode & GitHubUpdatableComment & GitHu Linked Salesforce FeedItem """ salesforceFeedItem: SalesforceFeedItem - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -240764,7 +253705,9 @@ type GitHubReaction implements OneGraphNode & GitHubNode { Identifies the user who created this reaction. """ user: GitHubUser - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -240874,7 +253817,15 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & """ A list of review comments for the current pull request review. """ - comments(last: Int, first: Int, before: String, after: String): GitHubPullRequestReviewCommentConnection! + comments(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubPullRequestReviewCommentConnection! """ Identifies the commit associated with this pull request review. """ @@ -240910,7 +253861,15 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & """ A list of teams that this review was made on behalf of. """ - onBehalfOf(last: Int, first: Int, before: String, after: String): GitHubTeamConnection! + onBehalfOf(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubTeamConnection! """ Identifies when the comment was published at. """ @@ -240926,14 +253885,19 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & """ A list of Reactions left on the Issue. """ - reactions( - orderBy: GitHubReactionOrder - content: GitHubReactionContent - last: Int - first: Int - before: String - after: String - ): GitHubReactionConnection! + reactions(""" + Allows specifying the order in which reactions are returned. + """ orderBy: GitHubReactionOrder, """ + Allows filtering Reactions by emoji. + """ content: GitHubReactionContent, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubReactionConnection! """ The repository associated with this node. """ @@ -240961,7 +253925,15 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & """ A list of edits to this content. """ - userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection + userContentEdits(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserContentEditConnection """ Check if the current viewer can delete this object. """ @@ -240982,7 +253954,9 @@ type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & Did the viewer author this comment. """ viewerDidAuthor: Boolean! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -241013,7 +253987,9 @@ type GitHubPullRequestCommit implements OneGraphNode & GitHubUniformResourceLoca The HTTP URL for this pull request commit """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -241095,7 +254071,9 @@ type GitHubReviewDismissedEvent implements OneGraphNode & GitHubUniformResourceL The HTTP URL for this review dismissed event. """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -241123,7 +254101,9 @@ type GitHubMannequin implements OneGraphNode & GitHubUniformResourceLocatable & """ A URL pointing to the GitHub App's public avatar. """ - avatarUrl(size: Int): String! + avatarUrl(""" + The size of the resulting square image. + """ size: Int): String! """ Identifies the date and time when the object was created. """ @@ -241156,7 +254136,9 @@ type GitHubMannequin implements OneGraphNode & GitHubUniformResourceLocatable & The URL to this resource. """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -241525,7 +254507,9 @@ type GitHubOrganizationInvitation implements OneGraphNode & GitHubNode { The user's pending role in the organization (e.g. member, owner). """ role: GitHubOrganizationInvitationRole! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -241689,23 +254673,39 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ A list of teams that are ancestors of this team. """ - ancestors(last: Int, first: Int, before: String, after: String): GitHubTeamConnection! + ancestors(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubTeamConnection! """ A URL pointing to the team's avatar. """ - avatarUrl(size: Int): String + avatarUrl(""" + The size in pixels of the resulting square image. + """ size: Int): String """ List of child teams belonging to this team """ - childTeams( - last: Int - first: Int - before: String - after: String - immediateOnly: Boolean - userLogins: [String!] - orderBy: GitHubTeamOrder - ): GitHubTeamConnection! + childTeams(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Whether to list immediate child teams or all descendant child teams. + """ immediateOnly: Boolean, """ + User logins to filter by + """ userLogins: [String!], """ + Order for connection + """ orderBy: GitHubTeamOrder): GitHubTeamConnection! """ The slug corresponding to the organization and team. """ @@ -241721,18 +254721,25 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ Find a team discussion by its number. """ - discussion(number: Int!): GitHubTeamDiscussion + discussion(""" + The sequence number of the discussion to find. + """ number: Int!): GitHubTeamDiscussion """ A list of team discussions. """ - discussions( - orderBy: GitHubTeamDiscussionOrder - isPinned: Boolean - last: Int - first: Int - before: String - after: String - ): GitHubTeamDiscussionConnection! + discussions(""" + Order for connection + """ orderBy: GitHubTeamDiscussionOrder, """ + If provided, filters discussions according to whether or not they are pinned. + """ isPinned: Boolean, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubTeamDiscussionConnection! """ The HTTP path for team discussions """ @@ -241756,30 +254763,49 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ A list of pending invitations for users to this team """ - invitations(last: Int, first: Int, before: String, after: String): GitHubOrganizationInvitationConnection + invitations(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationInvitationConnection """ Get the status messages members of this entity have set that are either public or visible only to the organization. """ - memberStatuses( - orderBy: GitHubUserStatusOrder - last: Int - first: Int - before: String - after: String - ): GitHubUserStatusConnection! + memberStatuses(""" + Ordering options for user statuses returned from the connection. + """ orderBy: GitHubUserStatusOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserStatusConnection! """ A list of users who are members of this team. """ - members( - orderBy: GitHubTeamMemberOrder - role: GitHubTeamMemberRole - membership: GitHubTeamMembershipType - query: String - last: Int - first: Int - before: String - after: String - ): GitHubTeamMemberConnection! + members(""" + Order for the connection. + """ orderBy: GitHubTeamMemberOrder, """ + Filter by team member role + """ role: GitHubTeamMemberRole, """ + Filter by membership type + """ membership: GitHubTeamMembershipType, """ + The search string to look for. + """ query: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubTeamMemberConnection! """ The HTTP path for the team' members """ @@ -241815,14 +254841,19 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH """ A list of repositories this team has access to. """ - repositories( - orderBy: GitHubTeamRepositoryOrder - query: String - last: Int - first: Int - before: String - after: String - ): GitHubTeamRepositoryConnection! + repositories(""" + Order for the connection. + """ orderBy: GitHubTeamRepositoryOrder, """ + The search string to look for. + """ query: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubTeamRepositoryConnection! """ The HTTP path for this team's repositories """ @@ -241867,7 +254898,9 @@ type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitH Identifies if the viewer is watching, not watching, or ignoring the subscribable entity. """ viewerSubscription: GitHubSubscriptionState - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -241895,7 +254928,9 @@ type GitHubPushAllowance implements OneGraphNode & GitHubNode { """ id: ID! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -242035,12 +255070,15 @@ type GitHubBranchProtectionRule implements OneGraphNode & GitHubNode { """ A list of conflicts matching branches protection rule and other branch protection rules """ - branchProtectionRuleConflicts( - last: Int - first: Int - before: String - after: String - ): GitHubBranchProtectionRuleConflictConnection! + branchProtectionRuleConflicts(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubBranchProtectionRuleConflictConnection! """ The actor who created this branch protection rule. """ @@ -242064,13 +255102,17 @@ type GitHubBranchProtectionRule implements OneGraphNode & GitHubNode { """ Repository refs that are protected by this rule """ - matchingRefs( - last: Int - first: Int - before: String - after: String - query: String - ): GitHubRefConnection! + matchingRefs(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filters refs with query on name + """ query: String): GitHubRefConnection! """ Identifies the protection rule pattern. """ @@ -242078,7 +255120,15 @@ type GitHubBranchProtectionRule implements OneGraphNode & GitHubNode { """ A list push allowances for this branch protection rule. """ - pushAllowances(last: Int, first: Int, before: String, after: String): GitHubPushAllowanceConnection! + pushAllowances(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubPushAllowanceConnection! """ The repository associated with this branch protection rule. """ @@ -242122,13 +255172,18 @@ type GitHubBranchProtectionRule implements OneGraphNode & GitHubNode { """ A list review dismissal allowances for this branch protection rule. """ - reviewDismissalAllowances( - last: Int - first: Int - before: String - after: String - ): GitHubReviewDismissalAllowanceConnection! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + reviewDismissalAllowances(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubReviewDismissalAllowanceConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -242178,17 +255233,29 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of users that can be assigned to issues in this repository. """ - assignableUsers( - last: Int - first: Int - before: String - after: String - query: String - ): GitHubUserConnection! + assignableUsers(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filters users with query on user name and login + """ query: String): GitHubUserConnection! """ A list of branch protection rules for this repository. """ - branchProtectionRules(last: Int, first: Int, before: String, after: String): GitHubBranchProtectionRuleConnection! + branchProtectionRules(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubBranchProtectionRuleConnection! """ Returns the code of conduct for this repository """ @@ -242196,18 +255263,31 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of collaborators associated with the repository. """ - collaborators( - last: Int - first: Int - before: String - after: String - query: String - affiliation: GitHubCollaboratorAffiliation - ): GitHubRepositoryCollaboratorConnection + collaborators(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filters users with query on user name and login + """ query: String, """ + Collaborators affiliation level with a repository. + """ affiliation: GitHubCollaboratorAffiliation): GitHubRepositoryCollaboratorConnection """ A list of commit comments associated with the repository. """ - commitComments(last: Int, first: Int, before: String, after: String): GitHubCommitCommentConnection! + commitComments(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCommitCommentConnection! """ Identifies the date and time when the object was created. """ @@ -242227,18 +255307,31 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of deploy keys that are on this repository. """ - deployKeys(last: Int, first: Int, before: String, after: String): GitHubDeployKeyConnection! + deployKeys(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubDeployKeyConnection! """ Deployments associated with the repository """ - deployments( - last: Int - first: Int - before: String - after: String - orderBy: GitHubDeploymentOrder - environments: [String!] - ): GitHubDeploymentConnection! + deployments(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for deployments returned from the connection. + """ orderBy: GitHubDeploymentOrder, """ + Environments to list deployments for + """ environments: [String!]): GitHubDeploymentConnection! """ The description of the repository. """ @@ -242258,17 +255351,25 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of direct forked repositories. """ - forks( - last: Int - first: Int - before: String - after: String - isLocked: Boolean - ownerAffiliations: [GitHubRepositoryAffiliation] - affiliations: [GitHubRepositoryAffiliation] - orderBy: GitHubRepositoryOrder - privacy: GitHubRepositoryPrivacy - ): GitHubRepositoryConnection! + forks(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + If non-null, filters repositories according to whether they have been locked + """ 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], """ + 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], """ + Ordering options for repositories returned from the connection + """ orderBy: GitHubRepositoryOrder, """ + If non-null, filters repositories according to privacy + """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! """ The funding links for this repository """ @@ -242324,49 +255425,71 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ Returns a single issue from the current repository by number. """ - issue(number: Int!): GitHubIssue + issue(""" + The number for the issue to be returned. + """ number: Int!): GitHubIssue """ Returns a single issue-like object from the current repository by number. """ - issueOrPullRequest(number: Int!): GitHubIssueOrPullRequest + issueOrPullRequest(""" + The number for the issue to be returned. + """ number: Int!): GitHubIssueOrPullRequest """ A list of issues that have been opened in the repository. """ - issues( - last: Int - first: Int - before: String - after: String - filterBy: GitHubIssueFilters - states: [GitHubIssueState!] - labels: [String!] - orderBy: GitHubIssueOrder - ): GitHubIssueConnection! + issues(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filtering options for issues returned from the connection. + """ filterBy: GitHubIssueFilters, """ + A list of states to filter the issues by. + """ states: [GitHubIssueState!], """ + A list of label names to filter the pull requests by. + """ labels: [String!], """ + Ordering options for issues returned from the connection. + """ orderBy: GitHubIssueOrder): GitHubIssueConnection! """ Returns a single label by name """ - label(name: String!): GitHubLabel + label(""" + Label name + """ name: String!): GitHubLabel """ A list of labels associated with the repository. """ - labels( - query: String - last: Int - first: Int - before: String - after: String - orderBy: GitHubLabelOrder - ): GitHubLabelConnection + labels(""" + If provided, searches labels by name and description. + """ query: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for labels returned from the connection. + """ orderBy: GitHubLabelOrder): GitHubLabelConnection """ A list containing a breakdown of the language composition of the repository. """ - languages( - orderBy: GitHubLanguageOrder - last: Int - first: Int - before: String - after: String - ): GitHubLanguageConnection + languages(""" + Order for connection + """ orderBy: GitHubLanguageOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubLanguageConnection """ The license associated with the repository """ @@ -242378,13 +255501,17 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of Users that can be mentioned in the context of the repository. """ - mentionableUsers( - last: Int - first: Int - before: String - after: String - query: String - ): GitHubUserConnection! + mentionableUsers(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filters users with query on user name and login + """ query: String): GitHubUserConnection! """ Whether or not PRs are merged with a merge commit on this repository. """ @@ -242392,18 +255519,25 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ Returns a single milestone from the current repository by number. """ - milestone(number: Int!): GitHubMilestone + milestone(""" + The number for the milestone to be returned. + """ number: Int!): GitHubMilestone """ A list of milestones associated with the repository. """ - milestones( - orderBy: GitHubMilestoneOrder - states: [GitHubMilestoneState!] - last: Int - first: Int - before: String - after: String - ): GitHubMilestoneConnection + milestones(""" + Ordering options for milestones. + """ orderBy: GitHubMilestoneOrder, """ + Filter by the state of the milestones. + """ states: [GitHubMilestoneState!], """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubMilestoneConnection """ The repository's original mirror URL. """ @@ -242419,7 +255553,11 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A Git object in the repository """ - object(expression: String, oid: String): GitHubGitObject + object(""" + A Git revision expression suitable for rev-parse + """ expression: String, """ + The Git object ID + """ oid: String): GitHubGitObject """ The image used to represent this repository in Open Graph data. """ @@ -242439,19 +255577,27 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ Find project by number. """ - project(number: Int!): GitHubProject + project(""" + The project number to find. + """ number: Int!): GitHubProject """ A list of projects under the owner. """ - projects( - last: Int - first: Int - before: String - after: String - states: [GitHubProjectState!] - search: String - orderBy: GitHubProjectOrder - ): GitHubProjectConnection! + projects(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + A list of states to filter the projects by. + """ states: [GitHubProjectState!], """ + Query to search projects by, currently only searching by name. + """ search: String, """ + Ordering options for projects returned from the connection + """ orderBy: GitHubProjectOrder): GitHubProjectConnection! """ The HTTP path listing the repository's projects """ @@ -242463,21 +255609,31 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ Returns a single pull request from the current repository by number. """ - pullRequest(number: Int!): GitHubPullRequest + pullRequest(""" + The number for the pull request to be returned. + """ number: Int!): GitHubPullRequest """ A list of pull requests that have been opened in the repository. """ - pullRequests( - last: Int - first: Int - before: String - after: String - orderBy: GitHubIssueOrder - baseRefName: String - headRefName: String - labels: [String!] - states: [GitHubPullRequestState!] - ): GitHubPullRequestConnection! + pullRequests(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for pull requests returned from the connection. + """ orderBy: GitHubIssueOrder, """ + The base ref name to filter the pull requests by. + """ baseRefName: String, """ + The head ref name to filter the pull requests by. + """ headRefName: String, """ + A list of label names to filter the pull requests by. + """ labels: [String!], """ + A list of states to filter the pull requests by. + """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! """ Identifies when the repository was last pushed to. """ @@ -242489,66 +255645,103 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ Fetch a given ref from the repository """ - ref(qualifiedName: String!): GitHubRef + ref(""" + The ref to retrieve. Fully qualified matches are checked in order (`refs/heads/master`) before falling back onto checks for short name matches (`master`). + """ qualifiedName: String!): GitHubRef """ Fetch a list of refs from the repository """ - refs( - orderBy: GitHubRefOrder - direction: GitHubOrderDirection - refPrefix: String! - last: Int - first: Int - before: String - after: String - query: String - ): GitHubRefConnection + refs(""" + Ordering options for refs returned from the connection. + """ orderBy: GitHubRefOrder, """ + DEPRECATED: use orderBy. The ordering direction. + """ direction: GitHubOrderDirection, """ + A ref name prefix like `refs/heads/`, `refs/tags/`, etc. + """ refPrefix: String!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filters refs with query on name + """ query: String): GitHubRefConnection """ A list of registry packages under the owner. """ - registryPackages( - publicOnly: Boolean - registryPackageType: String - packageType: GitHubRegistryPackageType - repositoryId: ID - names: [String] - name: String - last: Int - first: Int - before: String - after: String - ): GitHubRegistryPackageConnection! + registryPackages(""" + Filter registry package by whether it is publicly visible + """ publicOnly: Boolean, """ + Filter registry package by type (string). + """ registryPackageType: String, """ + Filter registry package by type. + """ packageType: GitHubRegistryPackageType, """ + Find registry packages in a repository. + """ repositoryId: ID, """ + Find registry packages by their names. + """ names: [String], """ + Find registry package by name. + """ name: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ 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.") """ A list of registry packages for a particular search query. """ - registryPackagesForQuery( - packageType: GitHubRegistryPackageType - query: String - last: Int - first: Int - before: String - after: String - ): GitHubRegistryPackageConnection! + registryPackagesForQuery(""" + Filter registry package by type. + """ packageType: GitHubRegistryPackageType, """ + Find registry package by search query. + """ query: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ 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.") """ Lookup a single release given various criteria. """ - release(tagName: String!): GitHubRelease + release(""" + The name of the Tag the Release was created from + """ tagName: String!): GitHubRelease """ List of releases which are dependent on this repository. """ - releases( - orderBy: GitHubReleaseOrder - last: Int - first: Int - before: String - after: String - ): GitHubReleaseConnection! + releases(""" + Order for connection + """ orderBy: GitHubReleaseOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubReleaseConnection! """ A list of applied repository-topic associations for this repository. """ - repositoryTopics(last: Int, first: Int, before: String, after: String): GitHubRepositoryTopicConnection! + repositoryTopics(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubRepositoryTopicConnection! """ The HTTP path for this repository """ @@ -242556,7 +255749,9 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A description of the repository, rendered to HTML without any links in it. """ - shortDescriptionHTML(limit: Int): String! + shortDescriptionHTML(""" + How many characters to return. + """ limit: Int): String! """ Whether or not squash-merging is enabled on this repository. """ @@ -242568,17 +255763,29 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of users who have starred this starrable. """ - stargazers( - orderBy: GitHubStarOrder - last: Int - first: Int - before: String - after: String - ): GitHubStargazerConnection! + stargazers(""" + Order for connection + """ orderBy: GitHubStarOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubStargazerConnection! """ Returns a list of all submodules in this repository parsed from the .gitmodules file as of the default branch's HEAD commit. """ - submodules(last: Int, first: Int, before: String, after: String): GitHubSubmoduleConnection! + submodules(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubSubmoduleConnection! """ Temporary authentication token for cloning this repository. """ @@ -242630,24 +255837,44 @@ type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & """ A list of vulnerability alerts that are on this repository. """ - vulnerabilityAlerts(last: Int, first: Int, before: String, after: String): GitHubRepositoryVulnerabilityAlertConnection + vulnerabilityAlerts(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubRepositoryVulnerabilityAlertConnection """ A list of users watching the repository. """ - watchers(last: Int, first: Int, before: String, after: String): GitHubUserConnection! + watchers(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserConnection! """ Lists contributors to the specified repository and sorts them by the number of commits per contributor in descending order. This endpoint may return information that is a few hours old because the GitHub REST API v3 caches contributor data to improve performance. Note that GitHub identifies contributors by author email address. This field groups contribution counts by GitHub user, which includes all associated email addresses. To improve performance, only the first 500 author email addresses in the repository link to GitHub users. The rest will appear as anonymous contributors without associated GitHub user information. """ - contributors_oneGraph(after: String, includeAnonymousContributors: Boolean): GitHubRepositoryContributorConnection! + 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.*") """ 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.*") - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -242716,17 +255943,25 @@ type GitHubRef implements OneGraphNode & GitHubNode { """ A list of pull requests with this ref as the head ref. """ - associatedPullRequests( - last: Int - first: Int - before: String - after: String - orderBy: GitHubIssueOrder - baseRefName: String - headRefName: String - labels: [String!] - states: [GitHubPullRequestState!] - ): GitHubPullRequestConnection! + associatedPullRequests(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for pull requests returned from the connection. + """ orderBy: GitHubIssueOrder, """ + The base ref name to filter the pull requests by. + """ baseRefName: String, """ + The head ref name to filter the pull requests by. + """ headRefName: String, """ + A list of label names to filter the pull requests by. + """ labels: [String!], """ + A list of states to filter the pull requests by. + """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! """ """ @@ -242747,7 +255982,9 @@ type GitHubRef implements OneGraphNode & GitHubNode { The object the ref points to. """ target: GitHubGitObject! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -242846,7 +256083,15 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of Users assigned to this object. """ - assignees(last: Int, first: Int, before: String, after: String): GitHubUserConnection! + assignees(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserConnection! """ The actor who authored the comment. """ @@ -242906,11 +256151,27 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of comments associated with the pull request. """ - comments(last: Int, first: Int, before: String, after: String): GitHubIssueCommentConnection! + comments(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubIssueCommentConnection! """ A list of commits present in this pull request's head branch not present in the base branch. """ - commits(last: Int, first: Int, before: String, after: String): GitHubPullRequestCommitConnection! + commits(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubPullRequestCommitConnection! """ Identifies the date and time when the object was created. """ @@ -242934,7 +256195,15 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ Lists the files changed within this pull request. """ - files(last: Int, first: Int, before: String, after: String): GitHubPullRequestChangedFileConnection + files(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubPullRequestChangedFileConnection """ Identifies the head Ref associated with the pull request. """ @@ -242958,7 +256227,9 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ The hovercard information for this issue """ - hovercard(includeNotificationContexts: Boolean): GitHubHovercard! + hovercard(""" + Whether or not to include notification contexts + """ includeNotificationContexts: Boolean): GitHubHovercard! """ """ @@ -242978,13 +256249,17 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of labels associated with the object. """ - labels( - last: Int - first: Int - before: String - after: String - orderBy: GitHubLabelOrder - ): GitHubLabelConnection + labels(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for labels returned from the connection. + """ orderBy: GitHubLabelOrder): GitHubLabelConnection """ The moment the editor made the last edit """ @@ -243028,7 +256303,15 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of Users that are participating in the Pull Request conversation. """ - participants(last: Int, first: Int, before: String, after: String): GitHubUserConnection! + participants(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserConnection! """ The permalink to the pull request. """ @@ -243040,13 +256323,17 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ List of project cards associated with this pull request. """ - projectCards( - archivedStates: [GitHubProjectCardArchivedState] - last: Int - first: Int - before: String - after: String - ): GitHubProjectCardConnection! + projectCards(""" + A list of archived states to filter the cards by + """ archivedStates: [GitHubProjectCardArchivedState], """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubProjectCardConnection! """ Identifies when the comment was published at. """ @@ -243058,14 +256345,19 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of Reactions left on the Issue. """ - reactions( - orderBy: GitHubReactionOrder - content: GitHubReactionContent - last: Int - first: Int - before: String - after: String - ): GitHubReactionConnection! + reactions(""" + Allows specifying the order in which reactions are returned. + """ orderBy: GitHubReactionOrder, """ + Allows filtering Reactions by emoji. + """ content: GitHubReactionContent, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubReactionConnection! """ The repository associated with this node. """ @@ -243089,22 +256381,43 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of review requests associated with the pull request. """ - reviewRequests(last: Int, first: Int, before: String, after: String): GitHubReviewRequestConnection + reviewRequests(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubReviewRequestConnection """ The list of all review threads for this pull request. """ - reviewThreads(last: Int, first: Int, before: String, after: String): GitHubPullRequestReviewThreadConnection! + reviewThreads(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubPullRequestReviewThreadConnection! """ A list of reviews associated with the pull request. """ - reviews( - author: String - states: [GitHubPullRequestReviewState!] - last: Int - first: Int - before: String - after: String - ): GitHubPullRequestReviewConnection + reviews(""" + Filter by author of the review. + """ author: String, """ + A list of states to filter the reviews. + """ states: [GitHubPullRequestReviewState!], """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubPullRequestReviewConnection """ Identifies the state of the pull request. """ @@ -243116,20 +256429,36 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of events, comments, commits, etc. associated with the pull request. """ - timeline(last: Int, first: Int, before: String, after: String, since: String): GitHubPullRequestTimelineConnection! + timeline(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ 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.") """ A list of events, comments, commits, etc. associated with the pull request. """ - timelineItems( - last: Int - first: Int - before: String - after: String - itemTypes: [GitHubPullRequestTimelineItemsItemType!] - skip: Int - since: String - ): GitHubPullRequestTimelineItemsConnection! + timelineItems(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filter timeline items by type. + """ itemTypes: [GitHubPullRequestTimelineItemsItemType!], """ + Skips the first _n_ elements in the list. + """ skip: Int, """ + Filter timeline items by a `since` timestamp. + """ since: String): GitHubPullRequestTimelineItemsConnection! """ Identifies the pull request title. """ @@ -243145,7 +256474,15 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub """ A list of edits to this content. """ - userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection + userContentEdits(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserContentEditConnection """ Whether or not the viewer can apply suggestion. """ @@ -243174,7 +256511,9 @@ type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHub Identifies if the viewer is watching, not watching, or ignoring the subscribable entity. """ viewerSubscription: GitHubSubscriptionState - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -243232,13 +256571,17 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ The pull requests associated with a commit """ - associatedPullRequests( - orderBy: GitHubPullRequestOrder - last: Int - first: Int - before: String - after: String - ): GitHubPullRequestConnection + associatedPullRequests(""" + Ordering options for pull requests. + """ orderBy: GitHubPullRequestOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubPullRequestConnection """ Authorship details of the commit. """ @@ -243254,7 +256597,9 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ Fetches `git blame` information. """ - blame(path: String!): GitHubBlame! + blame(""" + The file whose Git blame information you want. + """ path: String!): GitHubBlame! """ The number of changed files in this commit. """ @@ -243262,7 +256607,15 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ Comments made on the commit. """ - comments(last: Int, first: Int, before: String, after: String): GitHubCommitCommentConnection! + comments(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCommitCommentConnection! """ The HTTP path for this Git object """ @@ -243290,27 +256643,39 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ The deployments associated with a commit. """ - deployments( - last: Int - first: Int - before: String - after: String - orderBy: GitHubDeploymentOrder - environments: [String!] - ): GitHubDeploymentConnection + deployments(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for deployments returned from the connection. + """ orderBy: GitHubDeploymentOrder, """ + Environments to list deployments for + """ environments: [String!]): GitHubDeploymentConnection """ The linear commit history starting from (and including) this commit, in the same order as `git log`. """ - history( - until: String - since: String - author: GitHubCommitAuthor - path: String - last: Int - first: Int - before: String - after: String - ): GitHubCommitHistoryConnection! + history(""" + Allows specifying an ending time or date for fetching commits. + """ until: String, """ + Allows specifying a beginning time or date for fetching commits. + """ since: String, """ + If non-null, filters history to only show commits with matching authorship. + """ author: GitHubCommitAuthor, """ + If non-null, filters history to only show commits touching files under this path. + """ path: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCommitHistoryConnection! """ """ @@ -243346,7 +256711,15 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ The parents of a commit. """ - parents(last: Int, first: Int, before: String, after: String): GitHubCommitConnection! + parents(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCommitConnection! """ The datetime when this commit was pushed. """ @@ -243374,7 +256747,15 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git """ Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file. """ - submodules(last: Int, first: Int, before: String, after: String): GitHubSubmoduleConnection! + submodules(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubSubmoduleConnection! """ Returns a URL to download a tarball archive for a repository. Note: For private repositories, these links are temporary and expire after five minutes. @@ -243409,7 +256790,9 @@ type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & Git Note: For private repositories, these links are temporary and expire after five minutes. """ zipballUrl: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -243527,14 +256910,19 @@ type GitHubPullRequestReviewComment implements OneGraphNode & GitHubUpdatableCom """ A list of Reactions left on the Issue. """ - reactions( - orderBy: GitHubReactionOrder - content: GitHubReactionContent - last: Int - first: Int - before: String - after: String - ): GitHubReactionConnection! + reactions(""" + Allows specifying the order in which reactions are returned. + """ orderBy: GitHubReactionOrder, """ + Allows filtering Reactions by emoji. + """ content: GitHubReactionContent, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubReactionConnection! """ The comment this is a reply to. """ @@ -243562,7 +256950,15 @@ type GitHubPullRequestReviewComment implements OneGraphNode & GitHubUpdatableCom """ A list of edits to this content. """ - userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection + userContentEdits(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserContentEditConnection """ Check if the current viewer can delete this object. """ @@ -243587,7 +256983,9 @@ type GitHubPullRequestReviewComment implements OneGraphNode & GitHubUpdatableCom Did the viewer author this comment. """ viewerDidAuthor: Boolean! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -243613,14 +257011,19 @@ interface GitHubReactable { """ A list of Reactions left on the Issue. """ - reactions( - orderBy: GitHubReactionOrder - content: GitHubReactionContent - last: Int - first: Int - before: String - after: String - ): GitHubReactionConnection! + reactions(""" + Allows specifying the order in which reactions are returned. + """ orderBy: GitHubReactionOrder, """ + Allows filtering Reactions by emoji. + """ content: GitHubReactionContent, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubReactionConnection! """ Can user react to this subject """ @@ -243681,7 +257084,15 @@ type GitHubReactionGroup { """ Users who have reacted to the reaction subject with the emotion represented by this reaction group """ - users(last: Int, first: Int, before: String, after: String): GitHubReactingUserConnection! + users(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubReactingUserConnection! """ Whether or not the authenticated user has left a reaction on the subject. """ @@ -243763,14 +257174,19 @@ type GitHubTeamDiscussionComment implements OneGraphNode & GitHubUpdatableCommen """ A list of Reactions left on the Issue. """ - reactions( - orderBy: GitHubReactionOrder - content: GitHubReactionContent - last: Int - first: Int - before: String - after: String - ): GitHubReactionConnection! + reactions(""" + Allows specifying the order in which reactions are returned. + """ orderBy: GitHubReactionOrder, """ + Allows filtering Reactions by emoji. + """ content: GitHubReactionContent, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubReactionConnection! """ The HTTP path for this comment """ @@ -243786,7 +257202,15 @@ type GitHubTeamDiscussionComment implements OneGraphNode & GitHubUpdatableCommen """ A list of edits to this content. """ - userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection + userContentEdits(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserContentEditConnection """ Check if the current viewer can delete this object. """ @@ -243807,7 +257231,9 @@ type GitHubTeamDiscussionComment implements OneGraphNode & GitHubUpdatableCommen Did the viewer author this comment. """ viewerDidAuthor: Boolean! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -243912,14 +257338,19 @@ type GitHubTeamDiscussion implements OneGraphNode & GitHubUpdatableComment & Git """ A list of comments on this discussion. """ - comments( - fromComment: Int - orderBy: GitHubTeamDiscussionCommentOrder - last: Int - first: Int - before: String - after: String - ): GitHubTeamDiscussionCommentConnection! + comments(""" + When provided, filters the connection such that results begin with the comment with this number. + """ fromComment: Int, """ + Order for connection + """ orderBy: GitHubTeamDiscussionCommentOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubTeamDiscussionCommentConnection! """ The HTTP path for discussion comments """ @@ -243979,14 +257410,19 @@ type GitHubTeamDiscussion implements OneGraphNode & GitHubUpdatableComment & Git """ A list of Reactions left on the Issue. """ - reactions( - orderBy: GitHubReactionOrder - content: GitHubReactionContent - last: Int - first: Int - before: String - after: String - ): GitHubReactionConnection! + reactions(""" + Allows specifying the order in which reactions are returned. + """ orderBy: GitHubReactionOrder, """ + Allows filtering Reactions by emoji. + """ content: GitHubReactionContent, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubReactionConnection! """ The HTTP path for this discussion """ @@ -244010,7 +257446,15 @@ type GitHubTeamDiscussion implements OneGraphNode & GitHubUpdatableComment & Git """ A list of edits to this content. """ - userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection + userContentEdits(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserContentEditConnection """ Check if the current viewer can delete this object. """ @@ -244043,7 +257487,9 @@ type GitHubTeamDiscussion implements OneGraphNode & GitHubUpdatableComment & Git Identifies if the viewer is watching, not watching, or ignoring the subscribable entity. """ viewerSubscription: GitHubSubscriptionState - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -244088,7 +257534,9 @@ type GitHubUnsubscribedEvent implements OneGraphNode & GitHubNode { Object referenced by event. """ subscribable: GitHubSubscribable! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -244147,7 +257595,9 @@ type GitHubUserBlockedEvent implements OneGraphNode & GitHubNode { The user who was blocked. """ subject: GitHubUser - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -244190,7 +257640,9 @@ type GitHubUserContentEdit implements OneGraphNode & GitHubNode { Identifies the date and time when the object was last updated. """ updatedAt: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -244345,7 +257797,9 @@ type GitHubUserStatus implements OneGraphNode & GitHubNode { The user who has this status. """ user: GitHubUser! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -244363,7 +257817,9 @@ interface OneGraphNode { """ List of OneGraphNodes that are linked from this node. """ - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! } """ @@ -244383,7 +257839,9 @@ type GitHubBot implements OneGraphNode & GitHubUniformResourceLocatable & GitHub """ A URL pointing to the GitHub App's public avatar. """ - avatarUrl(size: Int): String! + avatarUrl(""" + The size of the resulting square image. + """ size: Int): String! """ Identifies the date and time when the object was created. """ @@ -244412,7 +257870,9 @@ type GitHubBot implements OneGraphNode & GitHubUniformResourceLocatable & GitHub The HTTP URL for this bot """ url: String! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -244536,7 +257996,9 @@ type GitHubTeamRemoveRepositoryAuditEntry implements OneGraphNode & GitHubTeamAu The HTTP URL for the user. """ userUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -244591,22 +258053,31 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ Determine if this repository owner has any items that can be pinned to their profile. """ - anyPinnableItems(type: GitHubPinnableItemType): Boolean! + anyPinnableItems(""" + Filter to only a particular kind of pinnable item. + """ type: GitHubPinnableItemType): Boolean! """ Audit log entries of the organization """ - auditLog( - orderBy: GitHubAuditLogOrder - query: String - last: Int - first: Int - before: String - after: String - ): GitHubOrganizationAuditEntryConnection! + auditLog(""" + Ordering options for the returned audit log entries. + """ orderBy: GitHubAuditLogOrder, """ + The query string to filter audit entries + """ query: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationAuditEntryConnection! """ A URL pointing to the organization's public avatar. """ - avatarUrl(size: Int): String! + avatarUrl(""" + The size of the resulting square image. + """ size: Int): String! """ Identifies the date and time when the object was created. """ @@ -244650,17 +258121,29 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ Get the status messages members of this entity have set that are either public or visible only to the organization. """ - memberStatuses( - orderBy: GitHubUserStatusOrder - last: Int - first: Int - before: String - after: String - ): GitHubUserStatusConnection! + memberStatuses(""" + Ordering options for user statuses returned from the connection. + """ orderBy: GitHubUserStatusOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserStatusConnection! """ A list of users who are members of this organization. """ - membersWithRole(last: Int, first: Int, before: String, after: String): GitHubOrganizationMemberConnection! + membersWithRole(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationMemberConnection! """ The organization's public profile name. """ @@ -244680,27 +258163,43 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ A list of users who have been invited to join this organization. """ - pendingMembers(last: Int, first: Int, before: String, after: String): GitHubUserConnection! + pendingMembers(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserConnection! """ A list of repositories and gists this profile owner can pin to their profile. """ - pinnableItems( - last: Int - first: Int - before: String - after: String - types: [GitHubPinnableItemType!] - ): GitHubPinnableItemConnection! + pinnableItems(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filter the types of pinnable items that are returned. + """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! """ A list of repositories and gists this profile owner has pinned to their profile """ - pinnedItems( - last: Int - first: Int - before: String - after: String - types: [GitHubPinnableItemType!] - ): GitHubPinnableItemConnection! + pinnedItems(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filter the types of pinned items that are returned. + """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! """ Returns how many more items this profile owner can pin to their profile. """ @@ -244708,34 +258207,50 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ A list of repositories this user has pinned to their profile """ - pinnedRepositories( - last: Int - first: Int - before: String - after: String - isLocked: Boolean - ownerAffiliations: [GitHubRepositoryAffiliation] - affiliations: [GitHubRepositoryAffiliation] - orderBy: GitHubRepositoryOrder - privacy: GitHubRepositoryPrivacy - ): GitHubRepositoryConnection! + pinnedRepositories(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + If non-null, filters repositories according to whether they have been locked + """ 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], """ + 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], """ + Ordering options for repositories returned from the connection + """ 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.") """ Find project by number. """ - project(number: Int!): GitHubProject + project(""" + The project number to find. + """ number: Int!): GitHubProject """ A list of projects under the owner. """ - projects( - last: Int - first: Int - before: String - after: String - states: [GitHubProjectState!] - search: String - orderBy: GitHubProjectOrder - ): GitHubProjectConnection! + projects(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + A list of states to filter the projects by. + """ states: [GitHubProjectState!], """ + Query to search projects by, currently only searching by name. + """ search: String, """ + Ordering options for projects returned from the connection + """ orderBy: GitHubProjectOrder): GitHubProjectConnection! """ The HTTP path listing organization's projects """ @@ -244747,50 +258262,75 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ A list of registry packages under the owner. """ - registryPackages( - publicOnly: Boolean - registryPackageType: String - packageType: GitHubRegistryPackageType - repositoryId: ID - names: [String] - name: String - last: Int - first: Int - before: String - after: String - ): GitHubRegistryPackageConnection! + registryPackages(""" + Filter registry package by whether it is publicly visible + """ publicOnly: Boolean, """ + Filter registry package by type (string). + """ registryPackageType: String, """ + Filter registry package by type. + """ packageType: GitHubRegistryPackageType, """ + Find registry packages in a repository. + """ repositoryId: ID, """ + Find registry packages by their names. + """ names: [String], """ + Find registry package by name. + """ name: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ 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.") """ A list of registry packages for a particular search query. """ - registryPackagesForQuery( - packageType: GitHubRegistryPackageType - query: String - last: Int - first: Int - before: String - after: String - ): GitHubRegistryPackageConnection! + registryPackagesForQuery(""" + Filter registry package by type. + """ packageType: GitHubRegistryPackageType, """ + Find registry package by search query. + """ query: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ 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.") """ A list of repositories that the user owns. """ - repositories( - isFork: Boolean - last: Int - first: Int - before: String - after: String - isLocked: Boolean - ownerAffiliations: [GitHubRepositoryAffiliation] - affiliations: [GitHubRepositoryAffiliation] - orderBy: GitHubRepositoryOrder - privacy: GitHubRepositoryPrivacy - ): GitHubRepositoryConnection! + repositories(""" + If non-null, filters repositories according to whether they are forks of another repository + """ isFork: Boolean, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + If non-null, filters repositories according to whether they have been locked + """ 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], """ + 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], """ + Ordering options for repositories returned from the connection + """ orderBy: GitHubRepositoryOrder, """ + If non-null, filters repositories according to privacy + """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! """ Find Repository. """ - repository(name: String!): GitHubRepository + repository(""" + Name of Repository to find. + """ name: String!): GitHubRepository """ When true the organization requires all members, billing managers, and outside collaborators to enable two-factor authentication. """ @@ -244810,44 +258350,65 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable """ This object's sponsorships as the maintainer. """ - sponsorshipsAsMaintainer( - orderBy: GitHubSponsorshipOrder - includePrivate: Boolean - last: Int - first: Int - before: String - after: String - ): GitHubSponsorshipConnection! + 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, """ + Whether or not to include private sponsorships in the result set + """ includePrivate: Boolean, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubSponsorshipConnection! """ This object's sponsorships as the sponsor. """ - sponsorshipsAsSponsor( - orderBy: GitHubSponsorshipOrder - last: Int - first: Int - before: String - after: String - ): GitHubSponsorshipConnection! + 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, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubSponsorshipConnection! """ Find an organization's team by its slug. """ - team(slug: String!): GitHubTeam + team(""" + The name or slug of the team to find. + """ slug: String!): GitHubTeam """ A list of teams in this organization. """ - teams( - last: Int - first: Int - before: String - after: String - rootTeamsOnly: Boolean - ldapMapped: Boolean - orderBy: GitHubTeamOrder - userLogins: [String!] - query: String - role: GitHubTeamRole - privacy: GitHubTeamPrivacy - ): GitHubTeamConnection! + teams(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + If true, restrict to only root teams + """ rootTeamsOnly: Boolean, """ + If true, filters teams that are mapped to an LDAP Group (Enterprise only) + """ ldapMapped: Boolean, """ + Ordering options for teams returned from the connection + """ orderBy: GitHubTeamOrder, """ + User logins to filter by + """ userLogins: [String!], """ + If non-null, filters teams with query on team name and team slug + """ query: String, """ + If non-null, filters teams according to whether the viewer is an admin or member on team + """ role: GitHubTeamRole, """ + If non-null, filters teams according to privacy + """ privacy: GitHubTeamPrivacy): GitHubTeamConnection! """ The HTTP path listing organization's teams """ @@ -244892,7 +258453,9 @@ type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable The organization's public profile URL. """ websiteUrl: String - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -244906,7 +258469,9 @@ interface GitHubActor { """ A URL pointing to the actor's public avatar. """ - avatarUrl(size: Int): String! + avatarUrl(""" + The size of the resulting square image. + """ size: Int): String! """ The username of the actor. """ @@ -245004,14 +258569,19 @@ type GitHubCommitComment implements OneGraphNode & GitHubUpdatableComment & GitH """ A list of Reactions left on the Issue. """ - reactions( - orderBy: GitHubReactionOrder - content: GitHubReactionContent - last: Int - first: Int - before: String - after: String - ): GitHubReactionConnection! + reactions(""" + Allows specifying the order in which reactions are returned. + """ orderBy: GitHubReactionOrder, """ + Allows filtering Reactions by emoji. + """ content: GitHubReactionContent, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubReactionConnection! """ The repository associated with this node. """ @@ -245031,7 +258601,15 @@ type GitHubCommitComment implements OneGraphNode & GitHubUpdatableComment & GitH """ A list of edits to this content. """ - userContentEdits(last: Int, first: Int, before: String, after: String): GitHubUserContentEditConnection + userContentEdits(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubUserContentEditConnection """ Check if the current viewer can delete this object. """ @@ -245056,7 +258634,9 @@ type GitHubCommitComment implements OneGraphNode & GitHubUpdatableComment & GitH Did the viewer author this comment. """ viewerDidAuthor: Boolean! - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -245141,11 +258721,15 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ Determine if this repository owner has any items that can be pinned to their profile. """ - anyPinnableItems(type: GitHubPinnableItemType): Boolean! + anyPinnableItems(""" + Filter to only a particular kind of pinnable item. + """ type: GitHubPinnableItemType): Boolean! """ A URL pointing to the user's public avatar. """ - avatarUrl(size: Int): String! + avatarUrl(""" + The size of the resulting square image. + """ size: Int): String! """ The user's public profile bio. """ @@ -245157,7 +258741,15 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of commit comments made by this user. """ - commitComments(last: Int, first: Int, before: String, after: String): GitHubCommitCommentConnection! + commitComments(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubCommitCommentConnection! """ The user's public profile company. """ @@ -245169,7 +258761,13 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ The collection of contributions this user has made to different repositories. """ - contributionsCollection(to: String, from: String, organizationID: ID): GitHubContributionsCollection! + contributionsCollection(""" + Only contributions made before and up to and including this time will be counted. If omitted, defaults to the current time. + """ to: String, """ + Only contributions made at this time or later will be counted. If omitted, defaults to a year ago. + """ from: String, """ + The ID of the organization used to filter contributions. + """ organizationID: ID): GitHubContributionsCollection! """ Identifies the date and time when the object was created. """ @@ -245185,34 +258783,67 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of users the given user is followed by. """ - followers(last: Int, first: Int, before: String, after: String): GitHubFollowerConnection! + followers(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubFollowerConnection! """ A list of users the given user is following. """ - following(last: Int, first: Int, before: String, after: String): GitHubFollowingConnection! + following(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubFollowingConnection! """ Find gist by repo name. """ - gist(name: String!): GitHubGist + gist(""" + The gist name to find. + """ name: String!): GitHubGist """ A list of gist comments made by this user. """ - gistComments(last: Int, first: Int, before: String, after: String): GitHubGistCommentConnection! + gistComments(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubGistCommentConnection! """ A list of the Gists the user has created. """ - gists( - last: Int - first: Int - before: String - after: String - orderBy: GitHubGistOrder - privacy: GitHubGistPrivacy - ): GitHubGistConnection! + gists(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for gists returned from the connection + """ orderBy: GitHubGistOrder, """ + Filters Gists according to privacy. + """ privacy: GitHubGistPrivacy): GitHubGistConnection! """ The hovercard information for this user in a given context """ - hovercard(primarySubjectId: ID): GitHubHovercard! + hovercard(""" + The ID of the subject to get the hovercard in the context of + """ primarySubjectId: ID): GitHubHovercard! """ """ @@ -245248,20 +258879,35 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of issue comments made by this user. """ - issueComments(last: Int, first: Int, before: String, after: String): GitHubIssueCommentConnection! + issueComments(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubIssueCommentConnection! """ A list of issues associated with this user. """ - issues( - last: Int - first: Int - before: String - after: String - filterBy: GitHubIssueFilters - states: [GitHubIssueState!] - labels: [String!] - orderBy: GitHubIssueOrder - ): GitHubIssueConnection! + issues(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filtering options for issues returned from the connection. + """ filterBy: GitHubIssueFilters, """ + A list of states to filter the issues by. + """ states: [GitHubIssueState!], """ + A list of label names to filter the pull requests by. + """ labels: [String!], """ + Ordering options for issues returned from the connection. + """ orderBy: GitHubIssueOrder): GitHubIssueConnection! """ Showcases a selection of repositories and gists that the profile owner has either curated or that have been selected automatically based on popularity. """ @@ -245281,31 +258927,49 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ Find an organization by its login that the user belongs to. """ - organization(login: String!): GitHubOrganization + organization(""" + The login of the organization to find. + """ login: String!): GitHubOrganization """ A list of organizations the user belongs to. """ - organizations(last: Int, first: Int, before: String, after: String): GitHubOrganizationConnection! + organizations(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubOrganizationConnection! """ A list of repositories and gists this profile owner can pin to their profile. """ - pinnableItems( - last: Int - first: Int - before: String - after: String - types: [GitHubPinnableItemType!] - ): GitHubPinnableItemConnection! + pinnableItems(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filter the types of pinnable items that are returned. + """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! """ A list of repositories and gists this profile owner has pinned to their profile """ - pinnedItems( - last: Int - first: Int - before: String - after: String - types: [GitHubPinnableItemType!] - ): GitHubPinnableItemConnection! + pinnedItems(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Filter the types of pinned items that are returned. + """ types: [GitHubPinnableItemType!]): GitHubPinnableItemConnection! """ Returns how many more items this profile owner can pin to their profile. """ @@ -245313,34 +258977,50 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of repositories this user has pinned to their profile """ - pinnedRepositories( - last: Int - first: Int - before: String - after: String - isLocked: Boolean - ownerAffiliations: [GitHubRepositoryAffiliation] - affiliations: [GitHubRepositoryAffiliation] - orderBy: GitHubRepositoryOrder - privacy: GitHubRepositoryPrivacy - ): GitHubRepositoryConnection! + pinnedRepositories(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + If non-null, filters repositories according to whether they have been locked + """ 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], """ + 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], """ + Ordering options for repositories returned from the connection + """ 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.") """ Find project by number. """ - project(number: Int!): GitHubProject + project(""" + The project number to find. + """ number: Int!): GitHubProject """ A list of projects under the owner. """ - projects( - last: Int - first: Int - before: String - after: String - states: [GitHubProjectState!] - search: String - orderBy: GitHubProjectOrder - ): GitHubProjectConnection! + projects(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + A list of states to filter the projects by. + """ states: [GitHubProjectState!], """ + Query to search projects by, currently only searching by name. + """ search: String, """ + Ordering options for projects returned from the connection + """ orderBy: GitHubProjectOrder): GitHubProjectConnection! """ The HTTP path listing user's projects """ @@ -245352,82 +259032,131 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of public keys associated with this user. """ - publicKeys(last: Int, first: Int, before: String, after: String): GitHubPublicKeyConnection! + publicKeys(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubPublicKeyConnection! """ A list of pull requests associated with this user. """ - pullRequests( - last: Int - first: Int - before: String - after: String - orderBy: GitHubIssueOrder - baseRefName: String - headRefName: String - labels: [String!] - states: [GitHubPullRequestState!] - ): GitHubPullRequestConnection! + pullRequests(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + Ordering options for pull requests returned from the connection. + """ orderBy: GitHubIssueOrder, """ + The base ref name to filter the pull requests by. + """ baseRefName: String, """ + The head ref name to filter the pull requests by. + """ headRefName: String, """ + A list of label names to filter the pull requests by. + """ labels: [String!], """ + A list of states to filter the pull requests by. + """ states: [GitHubPullRequestState!]): GitHubPullRequestConnection! """ A list of registry packages under the owner. """ - registryPackages( - publicOnly: Boolean - registryPackageType: String - packageType: GitHubRegistryPackageType - repositoryId: ID - names: [String] - name: String - last: Int - first: Int - before: String - after: String - ): GitHubRegistryPackageConnection! + registryPackages(""" + Filter registry package by whether it is publicly visible + """ publicOnly: Boolean, """ + Filter registry package by type (string). + """ registryPackageType: String, """ + Filter registry package by type. + """ packageType: GitHubRegistryPackageType, """ + Find registry packages in a repository. + """ repositoryId: ID, """ + Find registry packages by their names. + """ names: [String], """ + Find registry package by name. + """ name: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ 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.") """ A list of registry packages for a particular search query. """ - registryPackagesForQuery( - packageType: GitHubRegistryPackageType - query: String - last: Int - first: Int - before: String - after: String - ): GitHubRegistryPackageConnection! + registryPackagesForQuery(""" + Filter registry package by type. + """ packageType: GitHubRegistryPackageType, """ + Find registry package by search query. + """ query: String, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ 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.") """ A list of repositories that the user owns. """ - repositories( - isFork: Boolean - last: Int - first: Int - before: String - after: String - isLocked: Boolean - ownerAffiliations: [GitHubRepositoryAffiliation] - affiliations: [GitHubRepositoryAffiliation] - orderBy: GitHubRepositoryOrder - privacy: GitHubRepositoryPrivacy - ): GitHubRepositoryConnection! + repositories(""" + If non-null, filters repositories according to whether they are forks of another repository + """ isFork: Boolean, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + If non-null, filters repositories according to whether they have been locked + """ 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], """ + 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], """ + Ordering options for repositories returned from the connection + """ orderBy: GitHubRepositoryOrder, """ + If non-null, filters repositories according to privacy + """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! """ A list of repositories that the user recently contributed to. """ - repositoriesContributedTo( - last: Int - first: Int - before: String - after: String - contributionTypes: [GitHubRepositoryContributionType] - includeUserRepositories: Boolean - isLocked: Boolean - orderBy: GitHubRepositoryOrder - privacy: GitHubRepositoryPrivacy - ): GitHubRepositoryConnection! + repositoriesContributedTo(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + If non-null, include only the specified types of contributions. The GitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY] + """ contributionTypes: [GitHubRepositoryContributionType], """ + If true, include user repositories + """ includeUserRepositories: Boolean, """ + If non-null, filters repositories according to whether they have been locked + """ isLocked: Boolean, """ + Ordering options for repositories returned from the connection + """ orderBy: GitHubRepositoryOrder, """ + If non-null, filters repositories according to privacy + """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! """ Find Repository. """ - repository(name: String!): GitHubRepository + repository(""" + Name of Repository to find. + """ name: String!): GitHubRepository """ The HTTP path for this user """ @@ -245435,13 +259164,17 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ Replies this user has saved """ - savedReplies( - orderBy: GitHubSavedReplyOrder - last: Int - first: Int - before: String - after: String - ): GitHubSavedReplyConnection + savedReplies(""" + The field to order saved replies by. + """ orderBy: GitHubSavedReplyOrder, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubSavedReplyConnection """ The GitHub Sponsors listing for this user. """ @@ -245449,35 +259182,49 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ This object's sponsorships as the maintainer. """ - sponsorshipsAsMaintainer( - orderBy: GitHubSponsorshipOrder - includePrivate: Boolean - last: Int - first: Int - before: String - after: String - ): GitHubSponsorshipConnection! + 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, """ + Whether or not to include private sponsorships in the result set + """ includePrivate: Boolean, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubSponsorshipConnection! """ This object's sponsorships as the sponsor. """ - sponsorshipsAsSponsor( - orderBy: GitHubSponsorshipOrder - last: Int - first: Int - before: String - after: String - ): GitHubSponsorshipConnection! + 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, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubSponsorshipConnection! """ Repositories the user has starred. """ - starredRepositories( - orderBy: GitHubStarOrder - ownedByViewer: Boolean - last: Int - first: Int - before: String - after: String - ): GitHubStarredRepositoryConnection! + starredRepositories(""" + Order for connection + """ orderBy: GitHubStarOrder, """ + Filters starred repositories to only return repositories owned by the viewer. + """ ownedByViewer: Boolean, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubStarredRepositoryConnection! """ The user's description of what they're currently doing. """ @@ -245485,14 +259232,19 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created """ - topRepositories( - since: String - orderBy: GitHubRepositoryOrder! - last: Int - first: Int - before: String - after: String - ): GitHubRepositoryConnection! + topRepositories(""" + How far back in time to fetch contributed repositories + """ since: String, """ + Ordering options for repositories returned from the connection + """ orderBy: GitHubRepositoryOrder!, """ + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String): GitHubRepositoryConnection! """ Identifies the date and time when the object was last updated. """ @@ -245520,17 +259272,25 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu """ A list of repositories the given user is watching. """ - watching( - last: Int - first: Int - before: String - after: String - isLocked: Boolean - ownerAffiliations: [GitHubRepositoryAffiliation] - affiliations: [GitHubRepositoryAffiliation] - orderBy: GitHubRepositoryOrder - privacy: GitHubRepositoryPrivacy - ): GitHubRepositoryConnection! + watching(""" + Returns the last _n_ elements from the list. + """ last: Int, """ + Returns the first _n_ elements from the list. + """ first: Int, """ + Returns the elements in the list that come before the specified cursor. + """ before: String, """ + Returns the elements in the list that come after the specified cursor. + """ after: String, """ + If non-null, filters repositories according to whether they have been locked + """ 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], """ + 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], """ + Ordering options for repositories returned from the connection + """ orderBy: GitHubRepositoryOrder, """ + If non-null, filters repositories according to privacy + """ privacy: GitHubRepositoryPrivacy): GitHubRepositoryConnection! """ A URL pointing to the user's public website/blog. """ @@ -245541,13 +259301,19 @@ type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHu See the [email address endpoint documentation](https://developer.github.com/v3/users/emails/#list-email-addresses-for-a-user) for more details. """ - emailsIfIsViewer_oneGraph(onlyPrimary: Boolean, onlyVerified: Boolean): [GitHubUserEmail_oneGraph!] + emailsIfIsViewer_oneGraph(""" + Only include the GitHub has considers to be the primary email for this user + """ 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.*") """ Linked Salesforce User """ salesforceUser: SalesforceUser - oneGraphLinkedNodes(filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! + oneGraphLinkedNodes(""" + Filter the connected nodes that are returned by service or typename. + """ filter: OneGraphLinkedNodesConnectionFilter): OneGraphLinkedNodesConnection! """ Unique id across all of OneGraph """ @@ -246182,7 +259948,9 @@ type SpotifyCurrentUserProfile { """ uri: String playlists(limit: Int): [SpotifyPlaylist!] - player(market: String): SpotifyPlayer + player(""" + [Get information about the user’s current playback state, including track, track progress, and active device.](https://developer.spotify.com/documentation/web-api/reference/player/get-information-about-the-users-current-playback/) + """ market: String): SpotifyPlayer } """ @@ -246830,7 +260598,9 @@ type TrelloOrganization { """ website: String actions: TrelloActionsConnection - boards(filters: [TrelloBoardFilterEnumArg!]): TrelloBoardsConnection + boards(""" + Filter boards. Add multiple filters to include boards that pass any of the fitlers + """ filters: [TrelloBoardFilterEnumArg!]): TrelloBoardsConnection members: [TrelloMember!] } @@ -247869,11 +261639,15 @@ type TrelloBoard { """ Labels for a board """ - labels(limit: Int): TrelloLabelsConnection + labels(""" + Number of labels to fetch. Defaults to 50. + """ limit: Int): TrelloLabelsConnection """ Power-ups for a board """ - plugins(filter: TrelloPluginFilterEnumArg): TrelloPluginsConnection + plugins(""" + Get either enabled or available power-ups. Defaults to enabled. + """ filter: TrelloPluginFilterEnumArg): TrelloPluginsConnection """ Custom Fields are extra bits of structured data attached to cards when our users need a bit more than what Trello provides. """ @@ -248145,7 +261919,9 @@ type TrelloMember { enterpriseMemberships: TrelloEnterpriseMembershipsConnection organizations: TrelloOrganizationsConnection actions: TrelloActionsConnection - boards(filters: [TrelloBoardFilterEnumArg!]): TrelloBoardsConnection + boards(""" + Filter boards. Add multiple filters to include boards that pass any of the fitlers + """ filters: [TrelloBoardFilterEnumArg!]): TrelloBoardsConnection cards: TrelloCardsConnection } @@ -249274,200 +263050,541 @@ type Viewer { } type Query { - me(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): Viewer! + me(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): Viewer! """ The root for Airtable queries """ - airtable(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): AirtableQuery! + airtable(""" + 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, """ + 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.") """ The root for Box queries """ - box(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): BoxQuery! + box(""" + 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, """ + 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.") """ The root for Bundlephobia queries """ - bundlephobia(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): BundlephobiaQuery! + bundlephobia(""" + 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, """ + 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.") """ The root for Clearbit queries """ - clearbit(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): Clearbit! + clearbit(""" + 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, """ + 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.") """ The root for Cloudflare queries """ - cloudflare(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): CloudflareQuery! + cloudflare(""" + 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, """ + 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.") """ The root for Contentful queries """ - contentful(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): ContentfulQuery! + contentful(""" + 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, """ + 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.") """ The root for Dev.to queries """ - devTo(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): DevToQuery! + devTo(""" + 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, """ + 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.") """ The root for Dribbble queries """ - dribbble(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): DribbbleQuery! + dribbble(""" + 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, """ + 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.") """ The root for Dropbox queries """ - dropbox(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): DropboxQuery! + dropbox(""" + 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, """ + 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.") """ The root for Egghead.io queries """ - eggheadio(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): EggheadioQuery! + eggheadio(""" + 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, """ + 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.") """ The root for Facebook queries """ - facebookBusiness(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): FacebookBusinessQuery! + facebookBusiness(""" + 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, """ + 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.") """ The root for Fedex queries """ - fedex(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): FedexQuery! + fedex(""" + 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, """ + 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.") """ The root for Google queries """ - google(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): GoogleServices! + google(""" + 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, """ + 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.") """ The root for Hubspot queries """ - hubspot(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): HubspotQuery! + hubspot(""" + 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, """ + 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.") """ The root for Intercom queries """ - intercom(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): IntercomQuery! + intercom(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): IntercomQuery! """ The root for LogDNA queries """ - logdna(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): LogdnaQuery! + logdna(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): LogdnaQuery! """ The root for Mailchimp queries """ - mailchimp(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): MailchimpQuery! + mailchimp(""" + 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, """ + 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.") """ The root for Meetup queries """ - meetup(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): MeetupQuery! + meetup(""" + 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, """ + 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.") """ The root for Mixpanel queries """ - mixpanel(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): MixpanelQuery! + mixpanel(""" + 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, """ + 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.") """ The root for Netlify queries """ - netlify(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): NetlifyQuery! + netlify(""" + 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, """ + 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.") """ The root for Npm queries """ - npm(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): NpmQuery! + npm(""" + 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, """ + 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.") """ The root for Salesforce queries """ - salesforce(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): SalesforceQuery! + salesforce(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): SalesforceQuery! """ The root for Slack queries """ - slack(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): Slack! + slack(""" + 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, """ + 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.") """ The root for Spotify queries """ - spotify(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): SpotifyQuery! + spotify(""" + 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, """ + 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.") """ The root for Stripe queries """ - stripe(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): StripeQuery! + stripe(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): StripeQuery! """ The root for Trello queries """ - trello(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): TrelloQuery! + trello(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): TrelloQuery! """ The root for Twilio queries """ - twilio(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): TwilioQuery! + twilio(""" + 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, """ + 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.") """ The root for Twitch queries """ - twitchTv(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): TwitchTvQuery! + twitchTv(""" + 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, """ + 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.") """ The root for Twitter queries """ - twitter(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): Twitter! + twitter(""" + 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, """ + 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.") """ The root for UPS queries """ - ups(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): UpsQuery! + ups(""" + 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, """ + 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.") """ The root for USPS queries """ - usps(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): USPSQuery! + usps(""" + 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, """ + 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.") """ The root for YouTube queries """ - youTube(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): YouTubeQuery! + youTube(""" + 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, """ + 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.") """ The root for Zeit queries """ - zeit(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): ZeitQuery! + zeit(""" + 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, """ + 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.") """ The root for Zendesk queries """ - zendesk(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): ZendeskQuery! - quickbooks(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): QuickbooksQuery - immigrationGraph(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): ImmigrationGraphQuery - crunchbase(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): CrunchbaseQuery - brex(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): BrexRootQueryType - gitHub(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): GitHubQuery - productHunt(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): ProductHuntQuery - eventil(userIds: OneGraphServiceUserIds, auths: OneGraphServiceAuths): EventilQuery + zendesk(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): ZendeskQuery! + quickbooks(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): QuickbooksQuery + immigrationGraph(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): ImmigrationGraphQuery + crunchbase(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): CrunchbaseQuery + brex(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): BrexRootQueryType + gitHub(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): GitHubQuery + productHunt(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): ProductHuntQuery + eventil(""" + 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, """ + Optional OAuth tokens used to execute the query + """ auths: OneGraphServiceAuths): EventilQuery oneGraph: OneGraphServiceQuery! """ Fetches an object given its globally unique `oneGraphId`. """ - oneGraphNode(oneGraphId: ID!): OneGraphNode + 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 - q: String! - ): YoutubeVideoSearchResult + 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.") descuri(url: String!): Descuri - emailNode( - email: String! - userIds: OneGraphServiceUserIds - auths: OneGraphServiceAuths - ): OneGraphEmailNode! + emailNode(""" + Email address used to look up nodes. + """ 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, """ + 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.") } 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 81dde697aeb..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 @@ -12,7 +12,9 @@ type Foo implements Bar & Baz { """ This is a description of the `two` field. """ - two_abc(argument: InputType!): Type + two_abc(""" + This is a description of the `argument` argument. + """ argument: InputType!): Type three_abc(argument: InputType, other: String): Int four_abc(argument: String = "string"): String five_abc(argument: [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..ca77b9fdeed 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,26 @@ 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..6610ec1ccc2 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,26 @@ 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..5b36c4049b1 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,9 @@ 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..8b07272141f 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,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 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/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..a258b3b85bd 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,6 @@ 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..e87a9715d4d 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,31 @@ 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 +50,12 @@ 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 +70,12 @@ 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 +141,17 @@ 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/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 From b0307f4e7442da6809c560f6ce14146c61bccf3d Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Wed, 8 Apr 2026 12:59:01 +0000 Subject: [PATCH 3/8] update snapshots --- ...CertificationTests.Schema_Snapshot.graphql | 6 +- .../CertificationTests.Subgraph_SDL.snap | 6 +- ...CertificationTests.Schema_Snapshot.graphql | 6 +- .../CertificationTests.Subgraph_SDL.snap | 6 +- ....ExportDirectiveUsingNameCodeFirst.graphql | 6 +- ....ExportDirectiveUsingTypeCodeFirst.graphql | 6 +- ...ExternalToTypeFieldAnnotationBased.graphql | 6 +- ...notateExternalToTypeFieldCodeFirst.graphql | 6 +- ...KeyToClassAttributeAnnotationBased.graphql | 6 +- ...eyToClassAttributesAnnotationBased.graphql | 6 +- ...InterfaceAttributesAnnotationBased.graphql | 6 +- ...nnotateKeyToInterfaceTypeCodeFirst.graphql | 6 +- ...tateKeyToObjectTypeAnnotationBased.graphql | 6 +- ...s.AnnotateKeyToObjectTypeCodeFirst.graphql | 6 +- ...KeyToClassAttributeAnnotationBased.graphql | 6 +- ...eyToClassAttributesAnnotationBased.graphql | 6 +- ...InterfaceAttributesAnnotationBased.graphql | 6 +- ...nnotateKeyToInterfaceTypeCodeFirst.graphql | 6 +- ...tateKeyToObjectTypeAnnotationBased.graphql | 6 +- ...s.AnnotateKeyToObjectTypeCodeFirst.graphql | 6 +- ...iveTests.OverrideDirective_Annotation.snap | 6 +- ...rrideDirective_Progressive_Annotation.snap | 6 +- ...ive_GetsAddedCorrectly_Annotations.graphql | 9 +- ...ives_GetAddedCorrectly_Annotations.graphql | 9 +- ...ctives_GetAddedCorrectly_CodeFirst.graphql | 9 +- ...videsToClassAttributePureCodeFirst.graphql | 6 +- ...s.AnnotateProvidesToFieldCodeFirst.graphql | 6 +- ...videsToClassAttributePureCodeFirst.graphql | 6 +- ...s.AnnotateProvidesToFieldCodeFirst.graphql | 6 +- ...ive_GetsAddedCorrectly_Annotations.graphql | 9 +- ...ives_GetAddedCorrectly_Annotations.graphql | 9 +- ...ctives_GetAddedCorrectly_CodeFirst.graphql | 9 +- ...sts.Ensure_PagingInfo_Is_Shareable.graphql | 18 ++- ..._When_Shareable_Already_Registered.graphql | 18 ++- ...aMiddlewareTests.Download_GraphQL_SDL.snap | 72 +++++++---- ...s.Download_GraphQL_SDL_Explicit_Route.snap | 72 +++++++---- ...L_SDL_Explicit_Route_Explicit_Pattern.snap | 72 +++++++---- ...MiddlewareTests.Download_GraphQL_Schema.md | 72 +++++++---- ...oad_GraphQL_Schema_Slicing_Args_Enabled.md | 72 +++++++---- ...GraphQL_Types_SDL_Character_and_Query.snap | 12 +- ...ptorTests.DataResolvers_ApplyDefaults.snap | 63 ++++++---- ..._ApplyDefaults_DifferentDefaultMaxAge.snap | 63 ++++++---- ...s_ApplyDefaults_DifferentDefaultScope.snap | 63 ++++++---- ...sts.DataResolvers_ApplyDefaults_False.snap | 63 ++++++---- ...s.DataResolvers_CacheControl_Disabled.snap | 63 ++++++---- ...ceptorTests.QueryFields_ApplyDefaults.snap | 15 ++- ..._ApplyDefaults_DifferentDefaultMaxAge.snap | 15 ++- ...s_ApplyDefaults_DifferentDefaultScope.snap | 15 ++- ...Tests.QueryFields_ApplyDefaults_False.snap | 15 ++- ...sts.QueryFields_CacheControl_Disabled.snap | 15 ++- ...nTests.Authorize_Node_Field_Schema.graphql | 12 +- ...sts.Authorize_Apply_Can_Be_Omitted.graphql | 12 +- .../StarWarsCodeFirstTests.Schema.snap | 39 ++++-- .../IntegrationTests.Schema_Snapshot.snap | 42 ++++--- .../IntegrationTests.Schema.graphql | 48 ++++--- ...hema_Correctly_When_Connection_IsUsed.snap | 12 +- ...dge_Type_And_Inject_Edge_Value_Schema.snap | 12 +- ...actoryTypeReference_For_Connection.graphql | 30 +++-- ...actoryTypeReference_For_Enumerable.graphql | 30 +++-- ...ribute_Interface_With_Paging_Field.graphql | 48 ++++--- ...Attribute_Simple_StringList_Schema.graphql | 36 ++++-- ...ests.Deactivate_BackwardPagination.graphql | 30 +++-- ...ivate_BackwardPagination_Interface.graphql | 24 ++-- ..._Explicit_Backward_Paging_Fields_Work.snap | 6 +- ...ationTests.Explicit_ConnectionName.graphql | 36 ++++-- ...nnectionName_With_NamingConvention.graphql | 36 ++++-- ...ationTests.IncludeNodesField_False.graphql | 60 ++++++--- ...ts.Infer_ConnectionName_From_Field.graphql | 12 +- ...rom_NodeType_With_NamingConvention.graphql | 12 +- ...nTests.Interface_With_Paging_Field.graphql | 48 ++++--- ...tionTests.Simple_StringList_Schema.graphql | 60 ++++++--- ...ts.Ensure_Attributes_Are_Applied_Once.snap | 12 +- ...eTests.UsePagingAttribute_Infer_Types.snap | 12 +- ...ingAttribute_Infer_Types_On_Interface.snap | 12 +- ...ingAttribute_On_Extension_Infer_Types.snap | 12 +- ..._Query_With_FieldResult_And_Paging.graphql | 24 ++-- ..._Query_With_FieldResult_And_Paging.graphql | 24 ++-- ...ts.FactoryTypeReference_Is_Handled.graphql | 3 +- .../TypeDiscoveryTests.InferDateTime.snap | 3 +- ...DiscoveryTests.InferDateTimeFromModel.snap | 15 ++- ...sts.TypeDiscovery_Should_InferStructs.snap | 3 +- ...ecutable_Directives_Should_Be_Visited.snap | 3 +- ...ializeAsTests.SerializeAs_Is_Added.graphql | 6 +- ...Tests.New_On_PageInfo_Is_Shareable.graphql | 12 +- ...ew_On_PageInfo_Is_Shareable_Fluent.graphql | 12 +- ...areableTests.PageInfo_Is_Shareable.graphql | 12 +- ...Tests.PageInfo_Is_Shareable_Fluent.graphql | 12 +- ...emaAsync_CodeFirst_MatchesSnapshot.graphql | 6 +- ...aAsync_SchemaFirst_MatchesSnapshot.graphql | 6 +- ...emaAsync_CodeFirst_MatchesSnapshot.graphql | 3 +- ...mplementationFirst_MatchesSnapshot.graphql | 3 +- ...aAsync_SchemaFirst_MatchesSnapshot.graphql | 3 +- ...ureSpecifiedByDirectiveExistsInSdl.graphql | 3 +- ...teTests.Id_Type_Is_Correctly_Inferred.snap | 3 +- ...TypeTests.DateOnly_As_Argument_Schema.snap | 3 +- ...eTests.DateOnly_As_ReturnValue_Schema.snap | 3 +- ...tionFirst_AutomaticallyBinds_TimeSpan.snap | 3 +- ...ary_String_Object_Output_Field_Builds.snap | 3 +- ...ests.LocalDateTime_As_Argument_Schema.snap | 3 +- ...s.LocalDateTime_As_ReturnValue_Schema.snap | 3 +- ...TypeTests.DateOnly_As_Argument_Schema.snap | 3 +- ...eTests.DateOnly_As_ReturnValue_Schema.snap | 3 +- ...TypeTests.TimeOnly_As_Argument_Schema.snap | 3 +- ...eTests.TimeOnly_As_ReturnValue_Schema.snap | 3 +- ...ts.Change_DefaultBinding_For_DateTime.snap | 3 +- ...First_NamingConvention_RenameArgument.snap | 12 +- ...vention_RenameArgument_RequestBuilder.snap | 12 +- ...aFirstTests.SchemaFirst_Cursor_Paging.snap | 12 +- ...chemaFirst_Cursor_Paging_With_Objects.snap | 12 +- ...hemaFirst_Cursor_Paging_With_Resolver.snap | 12 +- .../SemanticNonNullTests.Pagination.snap | 12 +- ...faultWeights_RemovesCostDirectives.graphql | 3 +- ...eights_DoesNotRemoveCostDirectives.graphql | 3 +- .../PagingTests.Do_Not_Apply_Defaults.graphql | 36 ++++-- ...ult_Page_Size_When_Default_Is_Specified.md | 54 +++++--- ...Ensure_Paging_Defaults_Are_Applied.graphql | 54 +++++--- ...ult_Page_Size_When_Default_Is_Specified.md | 54 +++++--- ...faultWeights_RemovesCostDirectives.graphql | 3 +- ...eights_DoesNotRemoveCostDirectives.graphql | 3 +- ...alue_Inferred_From_DefaultPageSize.graphql | 27 ++-- ..._HasPrecedenceOver_DefaultPageSize.graphql | 27 ++-- ...s.Infer_Schema_From_IQueryable_Fields.snap | 36 ++++-- ...er_Schema_From_IQueryable_Task_Fields.snap | 24 ++-- ...hema_From_IQueryable_ValueTask_Fields.snap | 24 ++-- ...parable_Filter_Type_With_Attribute.graphql | 3 +- ...te_Enum_Filter_Type_With_Attribute.graphql | 3 +- ...putTests.Create_Implicit_Operation.graphql | 3 +- ...eate_Implicit_Operation_Normalized.graphql | 3 +- ...putTests.Create_Implicit_Operation.graphql | 3 +- ...putTests.Create_Explicit_Operation.graphql | 3 +- ...putTests.Create_Implicit_Operation.graphql | 3 +- ...reate_Schema_With_FilterAttributes.graphql | 3 +- ...sts.Create_Schema_With_FilterInput.graphql | 3 +- .../IntegrationTests.CreateSchema.graphql | 87 ++++++++----- ....Create_Schema_With_SortAttributes.graphql | 3 +- ...onTests.CreateSchema_OnDifferentScope.snap | 12 +- ...hen_AliasIsSameAsAlwaysProjectedField.snap | 12 +- ...ontainsProjectedField_With_Extensions.snap | 12 +- .../IntegrationTests.Execute_And_OnRoot.snap | 12 +- ...ationTests.Execute_And_OnRoot_Reverse.snap | 12 +- ...ts.Interface_Field_Schema_Snapshot.graphql | 24 ++-- ...rectlyOrderedMiddlewarePassValidation.snap | 12 +- ...hExecution_With_Keys_RecordsBatchSpan.snap | 53 +------- .../AbstractTypeTests.Abstract_Type.yaml | 12 +- ...stract_Type_Direct_Source_Schema_Call.yaml | 12 +- ...ts.Abstract_Type_With_Abstract_Lookup.yaml | 12 +- ...ts.Abstract_Type_With_Concrete_Lookup.yaml | 12 +- ...ts.Concrete_Type_With_Abstract_Lookup.yaml | 12 +- ...tractTypeTests.List_Of_Abstract_Types.yaml | 12 +- ...Tests.Handle_Any_Scalar_ComplexNested.yaml | 9 +- ...AnyScalarTests.Handle_Any_Scalar_List.yaml | 9 +- ...Tests.Handle_Any_Scalar_ListOfObjects.yaml | 9 +- ...rTests.Handle_Any_Scalar_NestedObject.yaml | 9 +- ...alarTests.Handle_Any_Scalar_NullValue.yaml | 9 +- ...yScalarTests.Handle_Any_Scalar_Object.yaml | 9 +- ...sts.Handle_Any_Scalar_ObjectWithLists.yaml | 9 +- ...rTests.Handle_Any_Scalar_SimpleValues.yaml | 9 +- ...s.Ensure_String_Literals_Can_Be_Empty.yaml | 24 ++-- ....Ensure_String_Variables_Can_Be_Empty.yaml | 24 ++-- ...reTests.Fetch_Book_From_SourceSchema1.yaml | 24 ++-- ...Schema1_And_Author_From_SourceSchema2.yaml | 24 ++-- ..._Book_From_SourceSchema1_Two_Requests.yaml | 24 ++-- ...Book_From_SourceSchema1_With_Settings.yaml | 24 ++-- ...chema1_And_Authors_From_SourceSchema2.yaml | 24 ++-- ...ks_With_Requirements_To_SourceSchema1.yaml | 24 ++-- ...irements_To_SourceSchema1_Three_Times.yaml | 24 ++-- ...Requirements_To_SourceSchema1_X_Times.yaml | 24 ++-- ...ks_With_Variable_First_And_First_Is_1.yaml | 24 ++-- ...With_Variable_First_And_First_Omitted.yaml | 24 ++-- ...rst_Last_And_First_1_And_Last_Omitted.yaml | 24 ++-- .../FileUploadTests.Upload_List_Of_Files.yaml | 6 +- ....Upload_List_Of_Files_In_Input_Object.yaml | 6 +- ..._List_Of_Files_In_Input_Object_Inline.yaml | 6 +- .../FileUploadTests.Upload_Single_File.yaml | 6 +- ...ts.Upload_Single_File_In_Input_Object.yaml | 6 +- ...ad_Single_File_In_Input_Object_Inline.yaml | 6 +- ...IntrospectionTests.Download_Schema.graphql | 24 ++-- ...spectionTests.Fetch_Schema_Types_Name.yaml | 24 ++-- ...ntrospectionTests.Fetch_Specific_Type.yaml | 24 ++-- ...ionQueries_DirectiveCapabilitiesQuery.yaml | 3 +- ...onQueries_InputValueCapabilitiesQuery.yaml | 3 +- ...trospectionQueries_IntrospectionQuery.yaml | 3 +- ...ectionQueries_SchemaCapabilitiesQuery.yaml | 3 +- ...spectionQueries_TypeCapabilitiesQuery.yaml | 3 +- ...Tests.Typename_On_Introspection_Types.yaml | 3 +- ...IntrospectionTests.Typename_On_Object.yaml | 24 ++-- ...onTests.Typename_On_Object_With_Alias.yaml | 24 ++-- .../IntrospectionTests.Typename_On_Query.yaml | 24 ++-- ...ionTests.Typename_On_Query_Skip_False.yaml | 24 ++-- ...tionTests.Typename_On_Query_Skip_True.yaml | 24 ++-- ...ionTests.Typename_On_Query_With_Alias.yaml | 24 ++-- ...quireTests.Require_Enumerable_In_List.yaml | 12 +- ...RequireTests.Require_Object_In_A_List.yaml | 16 ++- .../SourceSchemaMerger.Argument.Tests.cs | 85 +------------ .../SourceSchemaMerger.CostDirective.Tests.cs | 16 --- .../SourceSchemaMerger.Interface.Tests.cs | 41 ------ .../SourceSchemaMerger.Object.Tests.cs | 117 +----------------- .../SourceSchemaMerger.OutputField.Tests.cs | 24 ---- .../SourceSchemaMerger.TagDirective.Tests.cs | 28 ----- .../SourceSchemaMerger.Union.Tests.cs | 32 ----- .../SourceSchemaPreprocessorTests.cs | 10 -- ...NamedSchemas_AddsFusionDefinitions.graphql | 63 ++++++++-- ...abled_AppliesInferredKeyDirectives.graphql | 21 ---- .../SyntaxSerializer.SchemaSyntax.cs | 10 +- .../SchemaParserTests.OneGraph_Schema.snap | 21 ++-- ....Output_Should_BindAllRuntimeTypes.graphql | 3 +- ...dTypeTests.Should_MapObjectIdToScalar.snap | 3 +- ...istType_Should_NotContainAllOperation.snap | 3 +- 208 files changed, 2277 insertions(+), 1530 deletions(-) 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 853773920fe..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 @@ -51,8 +51,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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." 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 853773920fe..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 @@ -51,8 +51,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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." 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 e72303fd660..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 @@ -51,8 +51,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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." 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 e72303fd660..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 @@ -51,8 +51,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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." 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 f7eff38acd9..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 @@ -32,8 +32,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 f7eff38acd9..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 @@ -32,8 +32,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 65c436c5a7d..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 @@ -36,8 +36,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 965cbd65565..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 @@ -36,8 +36,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 21a7bc9b29a..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 @@ -26,8 +26,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 8d8799c6edb..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 @@ -27,8 +27,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 8f0b393d9a2..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 @@ -31,8 +31,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 0ff0dcf17a0..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 @@ -32,8 +32,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 16bf552571e..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 @@ -26,8 +26,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 7b695b3a6d1..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 @@ -27,8 +27,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 abd0f7ec47f..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 @@ -22,8 +22,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 e4bbb194baa..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 @@ -23,8 +23,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 696ddf3a66e..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 @@ -27,8 +27,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 f97b75a927a..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 @@ -37,8 +37,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 ed4f23f685d..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 @@ -22,8 +22,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 6fcef0c3de7..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 @@ -32,8 +32,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 6fb9c6d4ee4..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 @@ -27,8 +27,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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." 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 fcd2a1901a4..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 @@ -27,8 +27,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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." 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 69ad872efdf..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 @@ -26,13 +26,16 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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!]!]! + "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." 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 69ad872efdf..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 @@ -26,13 +26,16 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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!]!]! + "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." 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 ec10cffd2f2..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 @@ -26,13 +26,16 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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!]!]! + "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." 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 3b8b0353fa4..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 @@ -31,8 +31,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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." 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 ea7bbe1c7e6..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 @@ -31,8 +31,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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." 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 7cadf4566fc..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 @@ -31,8 +31,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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." 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 c4a43e2d759..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 @@ -31,8 +31,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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." 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 3bc3ca43a42..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 @@ -26,13 +26,16 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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!]!]! + "Retrieves list of a list of required JWT scopes." + scopes: [[String!]!]! ) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM "Scalar representing a set of fields." 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 3bc3ca43a42..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 @@ -26,13 +26,16 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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!]!]! + "Retrieves list of a list of required JWT scopes." + scopes: [[String!]!]! ) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM "Scalar representing a set of fields." 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 a4d4c864c2c..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 @@ -29,13 +29,16 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "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!]!]! + "Retrieves list of a list of required JWT scopes." + scopes: [[String!]!]! ) on SCALAR | OBJECT | FIELD_DEFINITION | INTERFACE | ENUM "Scalar representing a set of fields." 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 c0ddadfb9b0..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 @@ -39,10 +39,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -54,8 +58,10 @@ 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!] + "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." 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 c0ddadfb9b0..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 @@ -39,10 +39,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -54,8 +58,10 @@ 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!] + "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." 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 e031f1f8341..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 @@ -8,10 +8,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -23,10 +27,14 @@ type Droid implements Character { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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") @@ -58,10 +66,14 @@ type Human implements Character { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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") @@ -141,36 +153,48 @@ 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! + "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 + "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 + "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! + "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 + "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." 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 1a9d8d8c4f1..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 @@ -8,10 +8,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -23,10 +27,14 @@ type Droid implements Character { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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") @@ -58,10 +66,14 @@ type Human implements Character { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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") @@ -141,34 +153,46 @@ 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! + "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 + "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 + "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! + "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 + "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." 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 1a9d8d8c4f1..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 @@ -8,10 +8,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -23,10 +27,14 @@ type Droid implements Character { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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") @@ -58,10 +66,14 @@ type Human implements Character { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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") @@ -141,34 +153,46 @@ 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! + "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 + "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 + "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! + "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 + "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." 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 46e7b0d7906..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 @@ -19,10 +19,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -34,10 +38,14 @@ type Droid implements Character { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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") @@ -69,10 +77,14 @@ type Human implements Character { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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") @@ -152,36 +164,48 @@ 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! + "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 + "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 + "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! + "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 + "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." 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 f51a0b8fad0..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 @@ -19,10 +19,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -34,10 +38,14 @@ type Droid implements Character { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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") @@ -69,10 +77,14 @@ type Human implements Character { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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") @@ -152,36 +164,48 @@ 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! + "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 + "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 + "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! + "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 + "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." 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 1b5ac29998a..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 @@ -2,10 +2,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 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 05aa74723db..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 @@ -16,10 +16,14 @@ type NestedType { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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) @@ -34,10 +38,14 @@ type NestedType { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -68,10 +76,14 @@ type Query { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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) @@ -86,10 +98,14 @@ type Query { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -162,9 +178,14 @@ 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] + "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 f6ecdced0ca..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 @@ -16,10 +16,14 @@ type NestedType { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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) @@ -34,10 +38,14 @@ type NestedType { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -68,10 +76,14 @@ type Query { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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) @@ -86,10 +98,14 @@ type Query { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -162,9 +178,14 @@ 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] + "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 7791f59235f..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 @@ -16,10 +16,14 @@ type NestedType { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -35,10 +39,14 @@ type NestedType { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -69,10 +77,14 @@ type Query { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -88,10 +100,14 @@ type Query { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -164,9 +180,14 @@ 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] + "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 7ec06f7d098..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 @@ -16,10 +16,14 @@ type NestedType { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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) @@ -33,10 +37,14 @@ type NestedType { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -67,10 +75,14 @@ type Query { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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) @@ -84,10 +96,14 @@ type Query { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -160,9 +176,14 @@ 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] + "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 7ec06f7d098..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 @@ -16,10 +16,14 @@ type NestedType { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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) @@ -33,10 +37,14 @@ type NestedType { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -67,10 +75,14 @@ type Query { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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) @@ -84,10 +96,14 @@ type Query { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -160,9 +176,14 @@ 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] + "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 98af61f954e..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 @@ -17,9 +17,14 @@ 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] + "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 13dab0fdd14..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 @@ -17,9 +17,14 @@ 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] + "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 9c99b0b135c..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 @@ -17,9 +17,14 @@ 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] + "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 d243d9224e8..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 @@ -17,9 +17,14 @@ 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] + "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 d243d9224e8..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 @@ -17,9 +17,14 @@ 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] + "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 c8236289a60..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 @@ -69,14 +69,18 @@ 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 + "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! + "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 4e40b75f483..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 @@ -19,12 +19,16 @@ 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 + "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! + "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 6bc5a72f58a..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 @@ -8,10 +8,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -23,10 +27,14 @@ type Droid implements Character { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -56,10 +64,14 @@ type Human implements Character { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -129,7 +141,8 @@ 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! + "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." 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 e279dd85ecd..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 @@ -80,17 +80,25 @@ type Query { """ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "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") @@ -116,16 +124,22 @@ 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! + "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 + "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 611ced3e4fd..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 @@ -23,10 +23,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -64,10 +68,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! @@ -147,19 +155,27 @@ type Query { "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 e2675555b34..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 @@ -34,9 +34,13 @@ 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 + "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 8392f90219c..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 @@ -16,10 +16,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } 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 0f6d8d7bf01..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 @@ -42,10 +42,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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") @@ -53,14 +57,20 @@ type Query1 { "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! + "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 + "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 0f6d8d7bf01..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 @@ -42,10 +42,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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") @@ -53,14 +57,20 @@ type Query1 { "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! + "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 + "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 c89ba2f8d53..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 @@ -4,10 +4,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } @@ -85,21 +89,33 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 9d221776472..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 @@ -76,21 +76,33 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 3c45b317b2d..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 @@ -112,23 +112,33 @@ 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 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 + "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 + "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 + "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 + "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 b7bcf5f9162..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 @@ -4,8 +4,10 @@ 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 first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String ): ExplicitTypeConnection } @@ -83,15 +85,21 @@ 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 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 + "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 + "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 a25c4e9fcd9..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 @@ -4,8 +4,10 @@ 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 + "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 } 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 e870c4e7438..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 @@ -40,22 +40,34 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } 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 6c812d920d9..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 @@ -40,22 +40,34 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } 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 7ef2a2e01b2..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 @@ -102,33 +102,53 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 7efb7537efe..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 @@ -4,10 +4,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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.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 7ccf4701892..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 @@ -4,10 +4,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } 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 fd43a3a4fad..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 @@ -4,10 +4,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } @@ -85,21 +89,33 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 c0ca9ebfd25..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 @@ -112,33 +112,53 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 1553f9d9953..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 @@ -43,10 +43,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 5818877c80c..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 @@ -38,9 +38,13 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 ada446fa6e6..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,9 +1,13 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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_On_Extension_Infer_Types.snap b/src/HotChocolate/Core/test/Types.CursorPagination.Tests/__snapshots__/UsePagingAttributeTests.UsePagingAttribute_On_Extension_Infer_Types.snap index 5818877c80c..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 @@ -38,9 +38,13 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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.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 1ad66d53593..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 @@ -32,17 +32,25 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! 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 983b56e16e3..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 @@ -32,17 +32,25 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! 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 0ec8229e761..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 @@ -8,5 +8,6 @@ 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! + "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 69e0b6c2e64..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 @@ -9,7 +9,8 @@ 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! + "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." 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 c7aaaf1f9a8..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 @@ -43,16 +43,21 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! + "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." 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 78e32f290e7..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 @@ -20,7 +20,8 @@ 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! + "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." 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 fd90f47c5e0..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 @@ -18,7 +18,8 @@ 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! + "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." 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 7e390824d7a..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 @@ -25,8 +25,10 @@ enum ScalarSerializationType { } 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 + "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 d0dd532d88f..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 @@ -35,10 +35,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 52d3c0aa053..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 @@ -35,10 +35,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 ea8d8f6fa88..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 @@ -34,10 +34,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 ea8d8f6fa88..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 @@ -34,10 +34,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 7dd05eb7903..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 @@ -10,6 +10,8 @@ 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! + "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 7dd05eb7903..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 @@ -10,6 +10,8 @@ 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! + "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 2fb3f06c281..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 @@ -22,5 +22,6 @@ enum Enum { "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! + "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 2fb3f06c281..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 @@ -22,5 +22,6 @@ enum Enum { "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! + "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 2fb3f06c281..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 @@ -22,5 +22,6 @@ enum Enum { "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! + "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 8edf24067d8..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 @@ -8,7 +8,8 @@ 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! + "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." 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 41200a245f9..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 @@ -63,7 +63,8 @@ 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! + "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." 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 16583123f74..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 @@ -12,7 +12,8 @@ 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! + "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." 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 6e11bc100cd..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 @@ -12,7 +12,8 @@ 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! + "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." 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 7e5fdd3587d..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 @@ -8,7 +8,8 @@ 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! + "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." 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 50dace39e67..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 @@ -12,7 +12,8 @@ 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! + "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." 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 e0bd82b8070..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 @@ -12,7 +12,8 @@ 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! + "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." 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 ec982df4f0d..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 @@ -12,7 +12,8 @@ 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! + "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." 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 07ae61baaeb..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 @@ -12,7 +12,8 @@ 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! + "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." 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 0cd73b4c9bf..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 @@ -12,7 +12,8 @@ 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! + "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." 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 4ae49314ab9..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 @@ -12,7 +12,8 @@ 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! + "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." 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 4f747473379..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 @@ -12,7 +12,8 @@ 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! + "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." 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 6df7a729598..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 @@ -13,7 +13,8 @@ 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! + "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." 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 b37de2db4c9..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 @@ -7,8 +7,10 @@ schema { type MutationNamingConvention_Named { "GetMemberDescription" mutationField_Named( - "GetArgumentDescription" mutationArgument_Named: Int! - "GetArgumentDescription" complexArgumentMutation_Named: InputObjectNamingConventionInput_Named! + "GetArgumentDescription" + mutationArgument_Named: Int! + "GetArgumentDescription" + complexArgumentMutation_Named: InputObjectNamingConventionInput_Named! ): ObjectNamingConvention_Named! } @@ -22,8 +24,10 @@ type ObjectNamingConvention_Named { type QueryNamingConvention_Named { "GetMemberDescription" queryField_Named( - "GetArgumentDescription" queryArgument_Named: Int! - "GetArgumentDescription" complexArgument_Named: InputObjectNamingConventionInput_Named! + "GetArgumentDescription" + queryArgument_Named: Int! + "GetArgumentDescription" + complexArgument_Named: InputObjectNamingConventionInput_Named! ): ObjectNamingConvention_Named! } 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 b37de2db4c9..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 @@ -7,8 +7,10 @@ schema { type MutationNamingConvention_Named { "GetMemberDescription" mutationField_Named( - "GetArgumentDescription" mutationArgument_Named: Int! - "GetArgumentDescription" complexArgumentMutation_Named: InputObjectNamingConventionInput_Named! + "GetArgumentDescription" + mutationArgument_Named: Int! + "GetArgumentDescription" + complexArgumentMutation_Named: InputObjectNamingConventionInput_Named! ): ObjectNamingConvention_Named! } @@ -22,8 +24,10 @@ type ObjectNamingConvention_Named { type QueryNamingConvention_Named { "GetMemberDescription" queryField_Named( - "GetArgumentDescription" queryArgument_Named: Int! - "GetArgumentDescription" complexArgument_Named: InputObjectNamingConventionInput_Named! + "GetArgumentDescription" + queryArgument_Named: Int! + "GetArgumentDescription" + complexArgument_Named: InputObjectNamingConventionInput_Named! ): ObjectNamingConvention_Named! } 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 80b0cbcb901..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 @@ -34,9 +34,13 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 46b1a8de01e..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 @@ -38,9 +38,13 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 80b0cbcb901..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 @@ -34,9 +34,13 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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__/SemanticNonNullTests.Pagination.snap b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SemanticNonNullTests.Pagination.snap index 4666392e62f..46ffb4b0661 100644 --- a/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SemanticNonNullTests.Pagination.snap +++ b/src/HotChocolate/Core/test/Types.Tests/__snapshots__/SemanticNonNullTests.Pagination.snap @@ -50,10 +50,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } 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 fcc0bc4994d..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 @@ -26,7 +26,8 @@ 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! + "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 b04b0ab8f22..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 @@ -30,7 +30,8 @@ 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! + "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 0aa622f994b..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 @@ -27,10 +27,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } @@ -111,18 +115,26 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 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 ce0a1a015c7..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 @@ -62,10 +62,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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) } @@ -147,20 +151,28 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -216,15 +228,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! + "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 + "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 767593726cb..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 @@ -27,10 +27,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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"]) } @@ -112,20 +116,28 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -181,14 +193,20 @@ 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! + "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 + "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.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 0eabfbf2770..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 @@ -62,10 +62,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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) } @@ -147,20 +151,28 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -216,15 +228,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! + "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 + "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 fcc0bc4994d..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 @@ -26,7 +26,8 @@ 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! + "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 b04b0ab8f22..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 @@ -30,7 +30,8 @@ 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! + "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 677a402a9c4..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 @@ -34,19 +34,28 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "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 b074a49b22c..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 @@ -34,19 +34,28 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "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 01a91a13de3..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 @@ -110,24 +110,36 @@ type Query { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 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 f0901e099f5..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 @@ -108,18 +108,26 @@ type QueryTask { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } 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 ebe642e8307..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 @@ -108,18 +108,26 @@ type QueryValueTask { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } 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 169ba76ffe0..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 @@ -29,7 +29,8 @@ 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! + "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." 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 21d894f0743..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 @@ -29,7 +29,8 @@ 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! + "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." 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 1622384f79d..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 @@ -331,7 +331,8 @@ 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! + "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." 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 775c789847e..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 @@ -181,7 +181,8 @@ 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! + "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." 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 80966d129ec..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 @@ -207,7 +207,8 @@ 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! + "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." 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 b795f2345ef..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 @@ -42,7 +42,8 @@ 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! + "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." 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 7c768e8b782..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 @@ -36,7 +36,8 @@ 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! + "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." 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 acd3e4e8a3f..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 @@ -34,7 +34,8 @@ 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! + "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." 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 6a5f6f47047..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 @@ -67,7 +67,8 @@ 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! + "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." 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 56e4cced436..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 @@ -18,10 +18,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! @@ -180,10 +184,14 @@ type Query { @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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! @@ -191,10 +199,14 @@ type Query { @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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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) @@ -202,10 +214,14 @@ type Query { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! @@ -213,10 +229,14 @@ type Query { @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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! @@ -386,7 +406,8 @@ 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! + "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 """ @@ -412,11 +433,16 @@ 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 + "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 """ @@ -427,8 +453,10 @@ 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 + "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 """ @@ -451,7 +479,8 @@ 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! + "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." 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 0f6c85251aa..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 @@ -22,7 +22,8 @@ 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! + "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." 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 7d5d88fd110..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 @@ -54,10 +54,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 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 73da45bd4c9..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 @@ -84,10 +84,14 @@ type Query { "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 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 a6cd39c011f..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 @@ -87,10 +87,14 @@ type Query { "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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 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 7d5d88fd110..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 @@ -54,10 +54,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 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 7d5d88fd110..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 @@ -54,10 +54,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 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 fc7f6a0aa4b..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 @@ -4,10 +4,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -16,10 +20,14 @@ interface Person { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 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 cf7d07c86af..bebf76dba8b 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/TypeValidationTests.EnsureCorrectlyOrderedMiddlewarePassValidation.snap +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/TypeValidationTests.EnsureCorrectlyOrderedMiddlewarePassValidation.snap @@ -22,10 +22,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ActivityExecutionDiagnosticListenerTests.DataLoader_BatchExecution_With_Keys_RecordsBatchSpan.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ActivityExecutionDiagnosticListenerTests.DataLoader_BatchExecution_With_Keys_RecordsBatchSpan.snap index caf0fd8a188..aff27127020 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ActivityExecutionDiagnosticListenerTests.DataLoader_BatchExecution_With_Keys_RecordsBatchSpan.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ActivityExecutionDiagnosticListenerTests.DataLoader_BatchExecution_With_Keys_RecordsBatchSpan.snap @@ -132,58 +132,15 @@ { "OperationName": "GraphQL DataLoader Dispatch", "DisplayName": "GraphQL DataLoader Dispatch", - "Status": "Ok", - "tags": [ - { - "Key": "graphql.processing.type", - "Value": "dataloader_dispatch" - } - ], - "event": [ - { - "Name": "BatchEvaluated", - "Tags": [ - { - "Key": "openBatches", - "Value": 1 - } - ] - }, - { - "Name": "BatchDispatched", - "Tags": [ - { - "Key": "dispatchedBatches", - "Value": 1 - } - ] - } - ], + "Status": "Unset", + "tags": [], + "event": [], "activities": [ { "OperationName": "GraphQL DataLoader Batch CustomDataLoader", "DisplayName": "GraphQL DataLoader Batch CustomDataLoader", - "Status": "Ok", - "tags": [ - { - "Key": "graphql.processing.type", - "Value": "dataloader_batch" - }, - { - "Key": "graphql.dataloader.name", - "Value": "CustomDataLoader" - }, - { - "Key": "graphql.dataloader.batch.size", - "Value": 1 - }, - { - "Key": "graphql.dataloader.batch.keys", - "Value": [ - "abc" - ] - } - ], + "Status": "Unset", + "tags": [], "event": [] } ] 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 12111ab31ef..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 @@ -82,10 +82,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } 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 b61e48c281b..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 @@ -87,10 +87,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } 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 64c9cdcd785..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 @@ -81,10 +81,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } 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 c8b70567303..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 @@ -81,10 +81,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } 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 d778c23317a..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 @@ -77,10 +77,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } 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 a19b315a01c..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 @@ -91,10 +91,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } 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 80e5e5fd56c..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 @@ -71,13 +71,16 @@ sourceSchemas: } 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 + "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! + "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." 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 4419bc7e143..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 @@ -52,13 +52,16 @@ sourceSchemas: } 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 + "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! + "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." 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 19cbf53dd69..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 @@ -59,13 +59,16 @@ sourceSchemas: } 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 + "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! + "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." 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 acb8b9b6664..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 @@ -53,13 +53,16 @@ sourceSchemas: } 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 + "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! + "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." 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 7dd549f78ee..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 @@ -46,13 +46,16 @@ sourceSchemas: } 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 + "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! + "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." 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 ffcc3979f68..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 @@ -48,13 +48,16 @@ sourceSchemas: } 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 + "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! + "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." 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 58ce31af57c..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 @@ -58,13 +58,16 @@ sourceSchemas: } 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 + "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! + "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." 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 d2db64f057e..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 @@ -52,13 +52,16 @@ sourceSchemas: } 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 + "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! + "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." 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 2597257253e..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 @@ -61,10 +61,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -135,10 +139,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 0028a19ac42..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 @@ -65,10 +65,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -143,10 +147,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 2eb099564c5..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 @@ -67,10 +67,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -147,10 +151,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 6ad275a4760..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 @@ -71,10 +71,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -155,10 +159,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 8c195865c8e..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 @@ -67,10 +67,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -147,10 +151,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 3162a71f005..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 @@ -67,10 +67,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -126,10 +130,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 dbba5f33779..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 @@ -100,10 +100,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -213,10 +217,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 1dea9cc276c..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 @@ -80,10 +80,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -178,10 +182,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 ae753a9064a..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 @@ -80,10 +80,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -178,10 +182,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 4894658f8f9..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 @@ -80,10 +80,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -178,10 +182,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 93943c8a03e..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 @@ -83,10 +83,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -179,10 +183,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 8be909e1a46..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 @@ -102,10 +102,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -217,10 +221,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 7fd650e1e62..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 @@ -83,10 +83,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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! } @@ -179,10 +183,14 @@ sourceSchemas: 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 c8f700148a7..cb9815166d8 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,8 +86,10 @@ sourceSchemas: } 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 + "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." 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 b0dbbe90d0a..1ac5ec33f06 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,8 +86,10 @@ sourceSchemas: } 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 + "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." 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 9825d754e04..9f0316dd519 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,8 +86,10 @@ sourceSchemas: } 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 + "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." 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 c9b63492b7a..265618d22d5 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,8 +74,10 @@ sourceSchemas: } 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 + "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." 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 e79e64c0e46..e01c4983766 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,8 +74,10 @@ sourceSchemas: } 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 + "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." 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 5acb7784ae9..d6235c54c78 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,8 +74,10 @@ sourceSchemas: } 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 + "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." 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 b08b92c3259..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 @@ -4,17 +4,25 @@ 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 + "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 + "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 } 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 2ed742c79ef..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 @@ -125,10 +125,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -181,10 +185,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 88dce663b3f..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 @@ -65,10 +65,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -121,10 +125,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 56765efc22e..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 @@ -69,7 +69,8 @@ sourceSchemas: type Query @test(arg: "value") { "Object field description" posts( - "Argument description" filter: PostsFilter + "Argument description" + filter: PostsFilter first: Int! = 5 @test(arg: "value") hidden: Boolean @deprecated(reason: "No longer supported") ): [Post] 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 2e48a3cce96..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 @@ -70,7 +70,8 @@ sourceSchemas: type Query @test(arg: "value") { "Object field description" posts( - "Argument description" filter: PostsFilter + "Argument description" + filter: PostsFilter first: Int! = 5 @test(arg: "value") hidden: Boolean @deprecated(reason: "No longer supported") ): [Post] 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 05a2b905742..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 @@ -1755,7 +1755,8 @@ sourceSchemas: type Query @test(arg: "value") { "Object field description" posts( - "Argument description" filter: PostsFilter + "Argument description" + filter: PostsFilter first: Int! = 5 @test(arg: "value") hidden: Boolean @deprecated(reason: "No longer supported") ): [Post] 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 09c79a85b27..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 @@ -72,7 +72,8 @@ sourceSchemas: type Query @test(arg: "value") { "Object field description" posts( - "Argument description" filter: PostsFilter + "Argument description" + filter: PostsFilter first: Int! = 5 @test(arg: "value") hidden: Boolean @deprecated(reason: "No longer supported") ): [Post] 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 407e757153a..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 @@ -84,7 +84,8 @@ sourceSchemas: type Query @test(arg: "value") { "Object field description" posts( - "Argument description" filter: PostsFilter + "Argument description" + filter: PostsFilter first: Int! = 5 @test(arg: "value") hidden: Boolean @deprecated(reason: "No longer supported") ): [Post] 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 17060d05bd1..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 @@ -480,7 +480,8 @@ sourceSchemas: type Query @test(arg: "value") { "Object field description" posts( - "Argument description" filter: PostsFilter + "Argument description" + filter: PostsFilter first: Int! = 5 @test(arg: "value") hidden: Boolean @deprecated(reason: "No longer supported") ): [Post] 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 7e38b90e4b5..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 @@ -80,10 +80,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: @@ -170,10 +174,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 36845466700..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 @@ -80,10 +80,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: @@ -170,10 +174,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 d5409bad5ca..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 @@ -61,10 +61,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -117,10 +121,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 534bf3e60ff..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 @@ -61,10 +61,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -117,10 +121,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 777486fb213..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 @@ -59,10 +59,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -115,10 +119,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 a91ff775e79..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 @@ -61,10 +61,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -117,10 +121,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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: 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 01c366f9fec..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 @@ -101,10 +101,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } 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 e9d03f2c11d..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 @@ -81,10 +81,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 } @@ -230,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) @@ -348,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) 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 5466af45369..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 @@ -39,21 +39,11 @@ Search filter to apply query: Query } -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } scalar Product @fusion__type(schema: A) @fusion__type(schema: B) @@ -87,22 +77,10 @@ type Query { query: Query } -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } """); } @@ -136,21 +114,11 @@ Number of items to fetch query: Query } -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } """); } @@ -179,25 +147,12 @@ type ProductDimension { """ ], """ -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } type ProductDimension @fusion__type(schema: A) { @@ -230,22 +185,10 @@ type Product { """ ], """ -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } """); } @@ -271,22 +214,10 @@ type Product { """ ], """ -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } """); } @@ -312,22 +243,10 @@ type Product { """ ], """ -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } """); } 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 8abee3f86db..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 @@ -65,24 +65,8 @@ type Query @cost(weight: "1") @fusion__cost(schema: A, weight: "1.0") @fusion__cost(schema: B, weight: "1.0") -<<<<<<< Updated upstream - @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) ->>>>>>> Stashed changes } input Input @fusion__type(schema: A) @fusion__type(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 7e150587cfb..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 @@ -186,22 +186,11 @@ interface Product @key(fields: "id") @key(fields: "name") { query: Query } -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } interface Product @@ -246,35 +235,6 @@ type Cat implements Animal { query: Query } -<<<<<<< Updated upstream - 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) - } - - 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) -======= type Query @fusion__type(schema: A) { animalById(id: ID! @fusion__inputField(schema: A)): Animal @fusion__field(schema: A) @@ -294,7 +254,6 @@ type Dog implements 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) ->>>>>>> Stashed changes } interface Animal 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 8f75d3e8177..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 @@ -221,25 +221,12 @@ type Product @key(fields: "id") @key(fields: "name") { query: Query } -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } type Product @@ -282,27 +269,6 @@ type ProductPrice @key(fields: "regionName product { id }") { query: Query } -<<<<<<< Updated upstream - 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) -======= type Query @fusion__type(schema: A) { productById(id: ID! @fusion__inputField(schema: A)): Product @fusion__field(schema: A) @@ -317,7 +283,6 @@ type Product id: ID! @fusion__field(schema: A) price(regionName: String! @fusion__inputField(schema: A)): ProductPrice @fusion__field(schema: A) ->>>>>>> Stashed changes } type ProductPrice @@ -363,31 +328,6 @@ type Product @key(fields: "id") { query: Query } -<<<<<<< Updated upstream - 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 Lookups2 - @fusion__type(schema: A) { - productByName(name: String! - @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 @@ -403,7 +343,6 @@ type Lookups1 @fusion__type(schema: A) { type Lookups2 @fusion__type(schema: A) { productByName(name: String! @fusion__inputField(schema: A)): Product @fusion__field(schema: A) ->>>>>>> Stashed changes } type Product @@ -443,17 +382,9 @@ type Address { query: Query } -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } type Address @fusion__type(schema: A) { @@ -501,23 +432,11 @@ type Person @key(fields: "sku") { query: Query } -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } type Person @@ -553,20 +472,11 @@ type Product { query: Query } -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } type Product @@ -622,21 +532,6 @@ input BrandByInput2 @oneOf { query: Query } -<<<<<<< Updated upstream - 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) @@ -648,7 +543,6 @@ type Query @fusion__type(schema: A) { and: BrandByInput2! @fusion__inputField(schema: A) by: BrandByInput1! @fusion__inputField(schema: A) ): Brand @fusion__field(schema: A) ->>>>>>> Stashed changes } type Brand @@ -735,19 +629,10 @@ type Product @key(fields: "id") { query: Query } -<<<<<<< Updated upstream - 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(id: ID! @fusion__inputField(schema: A)): Product + productById("The product id" id: ID! @fusion__inputField(schema: A)): Product @fusion__field(schema: A) ->>>>>>> Stashed changes } type Product 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 86667027717..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,23 +26,11 @@ type Product { """ ], """ -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } """); } @@ -95,22 +83,10 @@ type Product { """ ], """ -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } """); } 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 26e0d629f92..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 @@ -119,22 +119,8 @@ type FooObject ): Int @tag(name: "a") @tag(name: "b") -<<<<<<< Updated upstream - @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) ->>>>>>> Stashed changes } interface FooInterface @@ -147,22 +133,8 @@ interface FooInterface ): Int @tag(name: "a") @tag(name: "b") -<<<<<<< Updated upstream - @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) ->>>>>>> Stashed changes } union FooUnion 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 c47cb14cadb..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 @@ -206,17 +206,9 @@ type Query { query: Query } -<<<<<<< Updated upstream - 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) ->>>>>>> Stashed changes } type Cat @fusion__type(schema: A) { @@ -263,29 +255,6 @@ type Cat { query: Query } -<<<<<<< Updated upstream - 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) - } - - 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) -======= type Query @fusion__type(schema: A) { animalById(id: ID! @fusion__inputField(schema: A)): Animal @fusion__field(schema: A) @@ -301,7 +270,6 @@ 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) ->>>>>>> Stashed changes } union Animal diff --git a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaPreprocessorTests.cs b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaPreprocessorTests.cs index 5a3e8f07720..15fdb1c6cf5 100644 --- a/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaPreprocessorTests.cs +++ b/src/HotChocolate/Fusion/test/Fusion.Composition.Tests/SourceSchemaPreprocessorTests.cs @@ -525,19 +525,9 @@ type Review implements Node { } type Query { -<<<<<<< Updated upstream - 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 ->>>>>>> Stashed changes } type Product implements Node @key(fields: "id") @key(fields: "name") { 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 24782280ba5..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 @@ -19,61 +19,110 @@ scalar fusion__FieldSelectionPath scalar fusion__FieldSelectionSet "The @fusion__cost directive specifies cost metadata for each source schema." -directive @fusion__cost(schema: fusion__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(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 "The @fusion__implements directive specifies on which source schema an interface is implemented by an object or interface type." -directive @fusion__implements(interface: String!, 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(schema: fusion__Schema!, 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 "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 "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 "The @fusion__schema_metadata directive is used to provide additional metadata for a source schema." -directive @fusion__schema_metadata(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(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(member: String!, 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 fde361b0bdb..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,26 +3,6 @@ schema { } type Query { -<<<<<<< Updated upstream - 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 @@ -33,7 +13,6 @@ type Query { productByIdOrCategoryId( idOrCategoryId: IdOrCategoryIdInput! @is(field: "{ id } | { categoryId }") ): Product @lookup ->>>>>>> Stashed changes } type Address { 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 c4a314b4b5a..20542b1da27 100644 --- a/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.SchemaSyntax.cs +++ b/src/HotChocolate/Language/src/Language.SyntaxTree/Utilities/SyntaxSerializer.SchemaSyntax.cs @@ -366,7 +366,15 @@ private void WriteArgumentDefinitions( { writer.WriteLine(); writer.WriteIndent(); - VisitArgumentValueDefinition(argument, writer); + + if (argument.Description is { }) + { + writer.WriteStringValue(argument.Description); + writer.WriteLine(); + writer.WriteIndent(); + } + + WriteInputValueDefinition(argument, writer); } writer.WriteLine(); 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 c34882454a1..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 @@ -12755,7 +12755,8 @@ type OneGraphMutation { createApp( """ `id` of the organization that this app should belong to - """ orgId: String! + """ + orgId: String! corsOrigins: [String!]! description: String name: String! @@ -51051,10 +51052,12 @@ type TwilioIncomingPhoneNumber { 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 last: Int first: Int before: String @@ -51245,16 +51248,20 @@ type TwilioQuery { 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 + """ + phoneNumber: String """ Include phone numbers based on the origin, by default, phone numbers of all origin are included. - """ origin: TwilioPhoneNumberOriginEnumArg + """ + 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 + """ + friendlyName: String """ Phone numbers new to the Twilio platform are marked as beta. - """ beta: Boolean + """ + beta: Boolean last: Int first: Int before: String 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 5b36c4049b1..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 @@ -20,7 +20,8 @@ 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! + "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" 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 8b07272141f..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 @@ -13,7 +13,8 @@ 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! + "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." 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 a258b3b85bd..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 @@ -56,5 +56,6 @@ 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! + "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 From 5a9f7832b1249f8ac872b92908a892c704093a45 Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Wed, 8 Apr 2026 13:36:00 +0000 Subject: [PATCH 4/8] more test snapshot and test fixes --- .../ServiceTypeTests.cs | 12 +++-- ...ctiveTests.FieldAuth_DefaultPolicy.graphql | 9 ++-- ...ldAuth_DefaultPolicy_AfterResolver.graphql | 9 ++-- ...dAuth_DefaultPolicy_BeforeResolver.graphql | 9 ++-- ...FieldAuth_DefaultPolicy_Validation.graphql | 9 ++-- ...irectiveTests.FieldAuth_WithPolicy.graphql | 9 ++-- ...FieldAuth_WithPolicy_AfterResolver.graphql | 9 ++-- ...ieldAuth_WithPolicy_BeforeResolver.graphql | 9 ++-- ...ts.FieldAuth_WithPolicy_Validation.graphql | 9 ++-- ...DirectiveTests.FieldAuth_WithRoles.graphql | 9 ++-- ...ectiveTests.TypeAuth_DefaultPolicy.graphql | 9 ++-- ...DirectiveTests.TypeAuth_WithPolicy.graphql | 9 ++-- ...eDirectiveTests.TypeAuth_WithRoles.graphql | 9 ++-- .../Caching/test/Caching.Tests/SchemaTests.cs | 15 ++++-- .../Types.Tests/Types/Scalars/AnyTypeTests.cs | 3 +- ...hExecution_With_Keys_RecordsBatchSpan.snap | 53 ++++++++++++++++-- ...bleTests.Create_Implicit_Operation.graphql | 3 +- ...eate_Implicit_Operation_Normalized.graphql | 3 +- ...ospectionClientTests.IntrospectServer.snap | 54 ++++++++++++------- 19 files changed, 180 insertions(+), 71 deletions(-) diff --git a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/ServiceTypeTests.cs b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/ServiceTypeTests.cs index c21b8c50b84..f3b8267edf7 100644 --- a/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/ServiceTypeTests.cs +++ b/src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/ServiceTypeTests.cs @@ -59,8 +59,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." @@ -120,8 +122,10 @@ directive @key(fields: FieldSet!, resolvable: Boolean = true) repeatable on OBJE "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!] + "Gets imported specification url." + url: String! + "Gets optional list of imported element names." + import: [String!] ) repeatable on SCHEMA "Scalar representing a set of fields." 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 44bece851f3..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 @@ -18,7 +18,10 @@ 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 + "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 ca424481eaf..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 @@ -18,7 +18,10 @@ 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 + "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 44bece851f3..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 @@ -18,7 +18,10 @@ 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 + "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 2b45d4897f5..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 @@ -18,7 +18,10 @@ 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 + "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 46b81c84f29..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 @@ -18,7 +18,10 @@ 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 + "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 49f172ba9b4..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 @@ -18,7 +18,10 @@ 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 + "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 46b81c84f29..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 @@ -18,7 +18,10 @@ 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 + "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 382095fb328..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 @@ -18,7 +18,10 @@ 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 + "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 b7db18736ef..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 @@ -18,7 +18,10 @@ 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 + "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 541a6e5985d..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 @@ -18,7 +18,10 @@ 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 + "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 7815ed5e049..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 @@ -18,7 +18,10 @@ 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 + "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 b611757ef9f..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 @@ -18,7 +18,10 @@ 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 + "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/Caching/test/Caching.Tests/SchemaTests.cs b/src/HotChocolate/Caching/test/Caching.Tests/SchemaTests.cs index 8677937018f..8db48737634 100644 --- a/src/HotChocolate/Caching/test/Caching.Tests/SchemaTests.cs +++ b/src/HotChocolate/Caching/test/Caching.Tests/SchemaTests.cs @@ -47,11 +47,16 @@ 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] + "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." 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 16094138133..c404064dea5 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/AnyTypeTests.cs +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Scalars/AnyTypeTests.cs @@ -1454,7 +1454,8 @@ 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! + "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." diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ActivityExecutionDiagnosticListenerTests.DataLoader_BatchExecution_With_Keys_RecordsBatchSpan.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ActivityExecutionDiagnosticListenerTests.DataLoader_BatchExecution_With_Keys_RecordsBatchSpan.snap index aff27127020..caf0fd8a188 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ActivityExecutionDiagnosticListenerTests.DataLoader_BatchExecution_With_Keys_RecordsBatchSpan.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ActivityExecutionDiagnosticListenerTests.DataLoader_BatchExecution_With_Keys_RecordsBatchSpan.snap @@ -132,15 +132,58 @@ { "OperationName": "GraphQL DataLoader Dispatch", "DisplayName": "GraphQL DataLoader Dispatch", - "Status": "Unset", - "tags": [], - "event": [], + "Status": "Ok", + "tags": [ + { + "Key": "graphql.processing.type", + "Value": "dataloader_dispatch" + } + ], + "event": [ + { + "Name": "BatchEvaluated", + "Tags": [ + { + "Key": "openBatches", + "Value": 1 + } + ] + }, + { + "Name": "BatchDispatched", + "Tags": [ + { + "Key": "dispatchedBatches", + "Value": 1 + } + ] + } + ], "activities": [ { "OperationName": "GraphQL DataLoader Batch CustomDataLoader", "DisplayName": "GraphQL DataLoader Batch CustomDataLoader", - "Status": "Unset", - "tags": [], + "Status": "Ok", + "tags": [ + { + "Key": "graphql.processing.type", + "Value": "dataloader_batch" + }, + { + "Key": "graphql.dataloader.name", + "Value": "CustomDataLoader" + }, + { + "Key": "graphql.dataloader.batch.size", + "Value": 1 + }, + { + "Key": "graphql.dataloader.batch.keys", + "Value": [ + "abc" + ] + } + ], "event": [] } ] 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 ca77b9fdeed..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 @@ -141,7 +141,8 @@ 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! + "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." 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 6610ec1ccc2..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 @@ -126,7 +126,8 @@ 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! + "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." 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 e87a9715d4d..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 @@ -35,10 +35,14 @@ type Human implements Character { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -51,10 +55,14 @@ type Droid implements Character { 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -71,10 +79,14 @@ 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 + "Returns the first _n_ elements from the list." + first: Int + "Returns the elements in the list that come after the specified cursor." + after: String + "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 @@ -142,16 +154,22 @@ 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! + "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 + "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 From df30ded9931eb799da90fcd8e8e923e896c9eb58 Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Wed, 8 Apr 2026 14:15:13 +0000 Subject: [PATCH 5/8] fix more tests --- .../Fusion/FusionPublishCommandTests.cs | 131 +++++++++++++----- .../Fusion/FusionValidateCommandTests.cs | 131 +++++++++++++----- .../composite-schema.graphqls | 111 ++++++++++++--- 3 files changed, 289 insertions(+), 84 deletions(-) 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 From e7f64fc717477a2d20e287af577ac0147b738833 Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Wed, 8 Apr 2026 14:22:36 +0000 Subject: [PATCH 6/8] snapshots --- .../composite-schema.graphqls | 111 ++++++++++++++---- 1 file changed, 89 insertions(+), 22 deletions(-) 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 From 4ebe10e97c7485bb5c9201240285bd8e229dec5e Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Thu, 9 Apr 2026 05:25:44 +0000 Subject: [PATCH 7/8] snapshots --- ...nts_Aliased_With_Different_Selections.yaml | 16 ++----- ...ments_All_Fields_On_Dedicated_Schemas.yaml | 16 ++----- ...nements_Type_Refinements_Do_Not_Match.yaml | 16 ++----- ...ith_Type_Refinement_Under_Nested_Skip.yaml | 46 ++++--------------- ...Field_With_Type_Refinement_Under_Skip.yaml | 40 ++++------------ .../FileUploadTests.Upload_Nullable_File.yaml | 17 +++---- ...sts.Upload_Nullable_File_Not_Provided.yaml | 23 ++++------ 7 files changed, 49 insertions(+), 125 deletions(-) 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__/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__/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 From 9ff5a1d926dc679401da98df264fc71de31a3ba5 Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Thu, 9 Apr 2026 06:40:49 +0000 Subject: [PATCH 8/8] snapshot --- ...StarWarsCodeFirstTests.SubscribeToReview_With_Variables.snap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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